我想制作一个自定义Dialog
。因为我不喜欢它的风格,我想要圆角矩形而不是尖角。我知道如何按AndroidManifest.xml
中的主题实现它,例如,我使用:
android:theme="@style/Theme.CustomDialog"
Theme.CustomDialog.xml
:
<style name="Theme.CustomDialog" parent="android:style/Theme.Dialog">
<item name="android:windowBackground">@drawable/filled_box</item>
<item name="android:windowNoTitle">true</item>
filled_box.xml
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#ffffffff"/>
<stroke android:width="3dp" color="#ffff8080"/>
<corners android:radius="30dp" />
<padding android:left="10dp" android:top="10dp"
android:right="10dp" android:bottom="10dp" />
</shape>
如何通过扩展Dialog
或AlertDialog
?
答案 0 :(得分:44)
在扩展Dialog调用super(context, R.style.CustomDialog);
的类的构造函数中,我已多次这样做以创建具有特定主题的自定义对话框。
但是,如果主题是您想要更改的唯一关于Dialog的内容,您可以尝试实例化Dialog类的实例并向其传递主题ID,如Dialog dialog = new Dialog(context, R.style.CustomDialog);
扩展Dialog的一个例子:
public class MyDialog extends Dialog
{
public MyDialog(final Context context)
{
// Set your theme here
super(context, R.style.MyDialogTheme);
// This is the layout XML file that describes your Dialog layout
this.setContentView(R.layout.myDialogLayout);
}
}
您将添加到此类的其余代码将与您在Activity类中编写的代码完全相同。