无法创建圆角对话框(Android系统的Eclipse)对话框、圆角、系统、Android

2023-09-05 10:18:36 作者:男神塑造中i

我试图使自定义对话框形状为我的应用程序的对话框。我一直在寻找这个主题了几个小时,但解决方案,我发现不工作对我来说,这就是为什么我问你我自己的问题。 我想带圆角的对话框并显示一个标题,然后用一些文字滚动型。不工作对我来说,唯一的事情是圆角。 在这里,我张贴你我的code:

I'm trying to make a custom dialog shape for my app's dialogs. I've been searching for this topic for hours, but the solutions I find don't work for me, that's why I ask you for my own problem. I want a Dialog with rounded corners and showing a title and then a ScrollView with some text. The only thing that is not working to me is the rounded corners. Here I post you my code:

我的Andr​​oidManifest.xml中使用,我想与我的圆润,边角对话活动:

my AndroidManifest.xml with the activity I want with my rounded-corners Dialog:

<activity 
        android:name=".AboutNacimiento"
        android:label="@string/about_nac_title"
        android:theme="@style/Theme.CustomDialogTheme"
        android:screenOrientation="nosensor">
    </activity>

然后我的资源与各自的风格(RES /布局/价值/ dialogTheme.xml)

then my resource with respective styles (res/layout/values/dialogTheme.xml)

<?xml version="1.0" encoding="utf-8"?>
<resources>

<style name="Theme.CustomDialogTheme" 
    parent="@android:style/Theme.Dialog">
    <item name="android:windowTitleStyle">@style/dialog_title_style</item>
    <item name="android:background">@drawable/rounded_dialog</item>     

</style>

<style name="dialog_title_style" parent="@android:Widget.TextView">
    <item name="android:background">@color/titulo_color</item>
    <item name="android:padding">10dip</item>
    <item name="android:textSize">20sp</item>
    <item name="android:gravity">center</item>
    <item name="android:textStyle">bold</item>
    <item name="android:textColor">@color/texto_blanco</item>
</style>    

最后我要为我的圆角对话框形状(RES /绘制/ rounded_dialog.xml):

and finally the shape I want for my rounded dialog (res/drawable/rounded_dialog.xml) :

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android"

android:shape="rectangle" >
<solid android:color="@color/background_color"/>
<stroke android:color="#7F7F7F" android:width="1dp" />
<corners
    android:radius="20dp"/> 
</shape>

但唯一的四舍五入的事情我得到是在TextViews一些边界...

but the only "rounded" thing I'm getting are some borders in the TextViews...

https://m.xsw88.com/allimgs/daicuo/20230905/2124.png.jpg

您可以请帮我把我想要的对话框?

could you please help me to get my desired Dialog?

推荐答案

关键是要删除默认的Andr​​oid框架是:

The key thing to remove default android frame is:

MyDialog.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));

下面是完整的例子:

Dialog MyDialog= new Dialog(MyActivity.this);
MyDialog.requestWindowFeature(Window.FEATURE_NO_TITLE);
MyDialog.setContentView(R.layout.my_custom_dialog);
MyDialog.getWindow().setBackgroundDrawable(new ColorDrawable(android.graphics.Color.TRANSPARENT));
MyDialog.show();