AlertDialog的白色边框

时间:2015-04-13 07:38:15

标签: android alertdialog

我需要在此默认对话框周围添加白色边框

enter image description here

以下是我正在使用的xml代码:

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

<solid android:color="#000000" />

<stroke
    android:width="25dp"
    android:color="#FFFFFF" />

<corners android:radius="10dp" />

</shape>

但它不会产生预期的结果。结果是这样的:

enter image description here

如何解决此问题?

1 个答案:

答案 0 :(得分:-1)

像这样创建一个9补丁图像

enter image description here

以这种方式应用

<style name="RunesDialog" parent="@android:style/Theme.Dialog">

        <item name="android:windowBackground">@drawable/cadre_dialogue/>
        ......
</style>