Android AlertDialog - 标题背景颜色

时间:2016-03-01 15:15:58

标签: android alertdialog android-alertdialog

我试图改变"标题"的背景​​颜色。 AlertDialog的(顶部)。我设法改变了标题的颜色,但我找不到如何更改其容器的背景颜色。可能吗?有什么建议吗?

这是我到目前为止所做的。

的AndroidManifest.xml

<application
    ...
    android:theme="@style/AppTheme">

styles.xml

<style name="AppBaseTheme" parent="android:Theme.Holo.Light">
</style>

<style name="AppTheme" parent="AppBaseTheme">
    <item name="android:actionBarStyle">@style/ActionBarStyle</item>
    <item name="android:alertDialogTheme">@style/AlertDialogTheme</item>
</style>

another_file_with_styles.xml

<style name="AlertDialogTheme" parent="@android:style/Theme.Holo.Light.Dialog">
    <item name="android:windowBackground">@android:color/transparent</item>
    <item name="android:textColor">@color/success_color</item>
</style>

类中的方法执行此操作

AlertDialog.Builder builder = new AlertDialog.Builder(context);
builder.setTitle(searchCriteria.getName());
builder.setItems(items, clickListener);

AlertDialog alert = builder.create();
alert.show();

// Eventually I'll do this to change the color of the divider
// int titleDividerId = context.getResources().getIdentifier("titleDivider", "id", "android");
// View titleDivider = alert.findViewById(titleDividerId);
//
// if (titleDivider != null) {
// titleDivider.setBackgroundColor(context.getResources().getColor(R.color.accent_color));
//}

我试图关注this tutorial,但它没有解释如何更改窗口的背景颜色。

编辑:为了清楚,箭头指向灰色/白色背景颜色(不是标题[制作和模型])

enter image description here

1 个答案:

答案 0 :(得分:3)

您可以使用自定义标题视图设置标题的背景颜色。

创建自定义标题视图并定义背景颜色:

res / layout / custom_title.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/backgroundColor"
    android:padding="16dp">

    <TextView
        android:id="@+id/title"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:textColor="@color/textColor" />

</RelativeLayout>

设置自定义标题视图:

View customTitleView = getLayoutInflater().inflate(R.layout.custom_title, null);
TextView title = (TextView) customTitleView.findViewById(R.id.title);
title.setText("TITLE");

AlertDialog.Builder builder = new AlertDialog.Builder(this);
builder.setItems(items, clickListener);
builder.setCustomTitle(customTitleView);

AlertDialog alert = builder.create();
alert.show();