将android活动定义为具有灯光主题的对话框

nil*_*ash 4 android themes dialog android-activity

在我的应用程序中,我将一个android活动定义为dialog.It看起来很正常.只有我的对话框出现在黑暗主题中.我想将它显示为浅色主题.我按以下方式定义了我的活动对话框:

<activity
    android:theme="@android:style/Theme.DeviceDefault.Dialog.MinWidth"
    android:name="com.example.dialog"
    android:label="@string/title_activity_list" 
    >
</activity>
Run Code Online (Sandbox Code Playgroud)

这该怎么做.任何解决方案 需要帮忙.谢谢.

sil*_*aut 8

你需要使用Holo Light Dialog主题:

<activity
    android:theme="@android:style/Theme.Holo.Light.Dialog"
    android:name="com.example.dialog"
    android:label="@string/title_activity_list" />
Run Code Online (Sandbox Code Playgroud)