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>

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

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


当前回答

对我来说,即使在我拥有了《Theme》之后,上述答案也都不适用。AppCompat作为应用程序的基本主题。我用的是com.android.support:design:24.1.0,所以我把版本改成了24.1.1。gradle同步后,它再次工作,异常消失了。在我看来,问题出在一些老版本的设计支持库上。

把这个放在这里,以防其他答案对某些人不适用。

其他回答

如果你需要扩展ActionBarActivity,你需要在style.xml上:

<!-- Base application theme. -->
<style name="AppTheme" parent="AppTheme.Base"/>

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

如果你将应用程序的主题设置为android: theme . material。Light代替AppTheme。Base,那么你会得到一个“IllegalStateException:你需要使用一个主题。”AppCompat主题(或后代)与此活动“错误。

这是什么固定它为我:而不是指定在manifest主题,我定义它在onCreate为每个扩展ActionBarActivity的活动:

@Override
protected void onCreate(Bundle savedInstanceState) {
    setTheme(R.style.MyAppTheme);
    super.onCreate(savedInstanceState);
    setContentView(R.layout.my_activity_layout);
...
}

这里MyAppTheme是Theme的后代。在xml中定义。注意,主题必须设置在super之前。onCreate和setContentView。

这真的迫使我张贴我自己的答案。

因为我正在使用Theme.AppCompat.Light。NoActionBar,也用支持兼容性的导入替换了所有AlertDialog实例,但在v21 (Lollipop)下仍然面临问题。

我不喜欢改变主题的想法,这是合适的。 所以在2天之后,我终于想到了其他为AndroidManifest.xml指定AppTheme的库。

我发现还有另外一个:Paytm Checkout SDK。

因此,下面的更改解决了这个问题。

Renaming AppTheme using for my app to 'XYZAppTheme' using tools:replace method in AndroidManifest of my project(app). <uses-permission android:name="android.permission.INTERNET" /> <application android:name=".XYZ" android:allowBackup="true" android:icon="@mipmap/ic_launcher_v2" android:label="@string/app_name" android:largeHeap="true" android:roundIcon="@mipmap/ic_launcher_v2_round" android:supportsRtl="true" android:theme="@style/XYZAppTheme" tools:replace="android:icon,android:theme"> <activity android:name=".xyz.SplashActivity" android:launchMode="singleTask" android:screenOrientation="portrait"> <intent-filter> <action android:name="android.intent.action.MAIN" /> <category android:name="android.intent.category.LAUNCHER" /> </intent-filter> </activity>

这是当你想在一个片段中有一个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();

我遇到这个问题,即使我的主题是一个AppCompat主题和我的活动是一个AppCompatActivity(或活动,建议对其他人的答案)。所以我清理、重建并重新运行这个项目。

(Build -> Clean Project;Build ->重建项目;Run -> Run)

这可能看起来很愚蠢,但现在它很有效!

希望这能有所帮助!