自定义对话框在标题下没有分隔符

时间:2012-01-16 08:45:03

标签: android android-ui android-dialog

在官方文档中有一篇关于如何创建custom dialogs的文章。还有一张结果对话框的图片,在其标题下有渐变边框。

当我复制此代码以在我的机器上运行它并查看结果时,我得到了没有的对话框  对话框标题与其内容之间的渐变分隔符:

enter image description here

这是正常行为,如果是,请告诉我如何通过代码或使用样式机制自行添加divider?

1 个答案:

答案 0 :(得分:3)

是的,这是自定义对话框的正常行为。要使标题下面的分隔符使用类似:

    <View
    android:layout_width="fill_parent"
    android:layout_height="0.03dip"
    android:layout_marginLeft="5dip"
    android:layout_marginRight="5dip"
    android:layout_marginBottom="5dip"
    android:background="#404040" />

在您拥有imageview和textview的布局上方的自定义布局中。