如何在对话框的标题和内容之间设置蓝色分隔符的样式(参见屏幕截图)?
我更喜欢通过xml来实现,但如果有必要,我会采用程序化解决方案.
我查看了android-15的默认styles.xml和themes.xml,但我找不到任何东西.
解决方法:
如果您正在使用ActionBarSherlock,可以通过查看abs_dialog_title_holo.xml来查看它.在那里你会看到蓝线是一个通过视图定义的devider:
<View android:id="@+id/abs__titleDivider"
android:layout_width="fill_parent"
android:layout_height="2dip"
android:background="@color/abs__holo_blue_light" />