我想做一个定制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
or来实现类似的结果AlertDialog
?