4

如何设置对话框标题和内容之间的蓝色分隔线(见截图)?

我更喜欢通过 xml 来实现,但如有必要,我将采用编程解决方案。

我查看了android-15 的默认styles.xml 和themes.xml,但我什么也找不到。

标准 Android 对话框

4

2 回答 2

1

如果您使用的是 ActionBarSherlock,您可以通过查看 abs_dialog_title_holo.xml 来检查它。在那里你会看到蓝线是一个通过视图定义的分隔符:

<View android:id="@+id/abs__titleDivider"
        android:layout_width="fill_parent"
        android:layout_height="2dip"
        android:background="@color/abs__holo_blue_light" />
于 2012-07-10T07:32:46.787 回答
0
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
     android:layout_width="match_parent"
        android:layout_height="match_parent"
    android:orientation="vertical"
    android:fitsSystemWindows="true">
    <TextView android:id="@android:id/title" style="?android:attr/windowTitleStyle"
        android:layout_width="match_parent"
        android:layout_height="30dp"
        android:paddingLeft="16dip"
        android:paddingRight="16dip"
        android:gravity="center_vertical|left" 
        android:text="Dialog"
        android:textColor="@Color/blue"/>
    <View android:id="@+id/titleDivider"
            android:layout_width="match_parent"
            android:layout_height="2dip"
            android:background="@Color/blue" />
    <TextView android:id="@android:id/title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:paddingLeft="16dip"
        android:paddingRight="16dip"
        android:gravity="center_vertical|left"
        android:textColor="@android:color/white" 
        android:text="Your Text"/>
</LinearLayout>

将此 xml 设置为类的内容,并在活动下方的清单文件中添加以下行:

 android:theme="@android:style/Theme.Black.NoTitleBar.Fullscreen" 
于 2012-07-10T07:30:49.673 回答