Android Studio 0.4.5

用于创建自定义对话框的Android文档:http://developer.android.com/guide/topics/ui/dialogs.html

如果您想要一个自定义对话框,您可以将活动显示为对话框,而不是使用对话框api。简单地创建一个活动,并将其主题设置为theme . holo . dialog in <activity> manifest元素:

<activity android:theme="@android:style/Theme.Holo.Dialog" >

然而,当我尝试这样做时,我得到以下异常:

java.lang.IllegalStateException: You need to use a Theme.AppCompat theme (or descendant) with this activity

我支持以下,我不能使用大于10的最小值:

minSdkVersion 10
targetSdkVersion 19

在我的风格中,我有以下几点:

<!-- Base application theme. -->
    <style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">

在我的清单上,我有这样的活动:

 <application
        android:allowBackup="true"
        android:icon="@drawable/ic_launcher"
        android:label="@string/app_name"
        android:theme="@style/AppTheme" >
        <activity
            android:theme="@android:style/Theme.Holo.Light.Dialog"
            android:name="com.ssd.register.Dialog_update"
            android:label="@string/title_activity_dialog_update" >
        </activity>

创建这样的对话框是我一直在做的事情,因为我已经完成了布局。

谁能告诉我如何解决这个问题?


当前回答

如果有人在运行Android 12启动画面时看到这个错误,请遵循以下简单的步骤

The app theme in values/themes.xml and values-night/themes.xml should have Theme.AppCompat as the parent theme. <style name="Theme.Ace" parent="Theme.AppCompat.DayNight.NoActionBar"> Use this theme in postSplashScreenTheme for the splash screen theme <style name="Theme.App.Starting" parent="Theme.SplashScreen"> <item name="windowSplashScreenBackground">@color/orange_900</item> <item name="windowSplashScreenAnimatedIcon">@drawable/ic_help_outline</item> <item name="windowSplashScreenAnimationDuration">2000</item> <item name="postSplashScreenTheme">@style/Theme.Ace</item> Remove any theme from the starting activity and use Theme.App.Starting as an application theme <application... android:theme="@style/Theme.App.Starting">

其他回答

对于这个错误,有很多解决方案。

你应该使用Activity或FragmentActivity而不是ActionbarActivity或AppCompatActivity 如果你想使用ActionbarActivity或AppCompatActivity,你应该把styles.xml Theme.Holo.xxxx改成Theme.AppCompat.Light(如果需要的话添加到DarkActionbar)

如果你不需要关于动作栏或AppCompat的高级属性,你不需要使用动作栏或AppCompat。

我有一个活动的主题<android:主题="@android:风格/主题。对话框“>用于显示对话框在我的appWidget和我有同样的问题

我通过更改活动代码解决了这个错误,如下所示:

@Override
protected void onCreate(Bundle savedInstanceState) {
    setTheme(R.style.Theme_AppCompat_Dialog); //this line i added
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_dialog);
}

快速的解决方案。

在styles.xml中更改基本主题父元素

取代的

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">

to

<style name="AppTheme" parent="Theme.AppCompat">

这是当你想在一个片段中有一个AlertDialog的时候

            AlertDialog.Builder adb = new AlertDialog.Builder(getActivity());
            adb.setTitle("My alert Dialogue \n");
            adb.setPositiveButton("OK", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int which) {

                  //some code

            } });
            adb.setNegativeButton("Cancel", new DialogInterface.OnClickListener() {
                public void onClick(DialogInterface dialog, int which) {

                 dialog.dismiss();

                } });
            adb.show();

您的活动正在扩展ActionBarActivity,这需要AppCompat。应用的主题。 将ActionBarActivity更改为Activity或FragmentActivity,就可以解决问题。

如果你不使用操作栏,那么:

android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"