暗活动对话框主题不起作用

时间:2017-08-08 07:23:54

标签: android android-activity dialog android-theme

我想要一个黑暗的活动对话框主题,所以我定义了以下内容:

<style name="AppThemeDialogActivityDark" parent="Theme.AppCompat.Dialog">
    <item name="colorPrimary">@color/colorPrimary</item>
    <item name="colorPrimaryDark">@color/colorPrimaryDark</item>
    <item name="colorAccent">@color/colorAccent</item>

    <!-- dark toolbar + dark popup menu -->
    <item name="toolbarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item>
    <item name="popupTheme">@style/ThemeOverlay.AppCompat.Dark</item>


    <!-- trying to forcefully set the background and text color -->
    <item name="android:windowBackground">@android:color/background_dark</item>
    <item name="android:textColor">@color/white</item>

    <item name="android:minWidth">320dp</item>

    <item name="windowNoTitle">true</item>
    <item name="windowActionBar">false</item>
</style>

的活动:

public class FeedbackActivity extends AppCompatActivity
{
    @Override
    protected void onCreate(Bundle savedInstanceState)
    {
        // darkTheme returns true!!!
        setTheme(MainApp.getPrefs().darkTheme() ? R.style.AppThemeDialogActivityDark : R.style.AppThemeDialogActivity);
        super.onCreate(savedInstanceState);

        mBinding = DataBindingUtil.setContentView(this, R.layout.activity_feedback);
    }
}

布局:

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

    <LinearLayout
        android:orientation="vertical"
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            android:elevation="4dp"
            app:theme="?toolbarTheme"/>

        <ListView
            android:padding="12dp"
            android:id="@+id/lvFeedback"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

        <ScrollView
            android:id="@+id/svFeedback"
            android:layout_width="wrap_content"
            android:layout_weight="1"
            android:layout_height="0dp">

                <TextView
                    android:padding="12dp"
                    android:id="@+id/tvFeedback"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content" />

        </ScrollView>

        <Button
            android:padding="12dp"
            android:id="@+id/btButton"
            style="?borderlessButtonStyle"
            android:elevation="4dp"
            android:layout_width="match_parent"
            android:layout_height="wrap_content" />

    </LinearLayout>

</layout>

我在这里缺少什么?为什么我的活动对话框有白色背景而不是黑色背景???

编辑 - 有趣的细节

  • 将视图背景设置为android:background="?android:windowBackground"确实有效。但我必须为ListView和TextView执行此操作。这个主题属性的工作意味着,主题被正确应用,似乎默认背景是在对话框主题中的另一个主题属性中定义的?
  • 我的ListView项目的主题也是正确的,只需使用android.R.layout.simple_list_item_1作为布局,我不需要设置背景/文字颜色,它们是针对黑暗主题的正确主题,但如果我不像上面那样手动设置ListView背景
  • ,则无法看到

1 个答案:

答案 0 :(得分:0)

尝试更改父级  parent="@android:style/Theme.Material.Dialog.Alert"