提问人:ant2009 提问时间:2/17/2014 最后编辑:Samuel Liewant2009 更新时间:9/29/2023 访问量:1097114
您需要将 Theme.AppCompat 主题(或后代)用于此活动
You need to use a Theme.AppCompat theme (or descendant) with this activity
问:
Android 工作室 0.4.5
有关创建自定义对话框的 Android 文档:http://developer.android.com/guide/topics/ui/dialogs.html
如果需要自定义对话框,可以改为将活动显示为对话框,而不是使用对话框 API。只需创建一个活动并将其主题设置为 Theme.Holo.Dialog
manifest 元素:<activity>
<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>
像这样创建对话框是我跳起来做的事情,因为我已经完成了布局。
谁能告诉我如何解决这个问题?
答:
最小 SDK 为 10。 从 API 级别 11 开始提供。因此,对于 10 个,您将使用您需要使用的支持库或相同的后代。ActionBar
AppCompat
Theme.AppCompat
用
android:theme="@style/Theme.AppCompat" >
或者,如果您不希望顶部的操作栏
android:theme="@style/Theme.AppCompat.NoActionBar">
更多信息@
http://developer.android.com/guide/topics/ui/actionbar.html
编辑:
我可能误读了 op 帖子。
似乎 op 想要一个带有活动主题的对话。因此,正如 Bobbake4 已经建议的那样,extend 而不是 .Activity
ActionBarActivity
还可以在下面的链接中查看@ Dialog Attributes
评论
您遇到此问题的原因是,您尝试应用对话框主题的活动正在扩展,这需要应用主题。ActionBarActivity
AppCompat
更新:扩展也会有这个问题AppCompatActivity
在这种情况下,将 Java 继承从 更改为 ,并将对话框主题保留在清单中,保持原样,即非值ActionBarActivity
Activity
Theme.AppCompat
一般规则是,如果您希望您的代码支持旧版本的 Android,它应该具有主题,并且 java 代码应该扩展 。如果你有一个不需要这种支持的活动,比如你只关心Android的最新版本和功能,你可以将任何主题应用于它,但java代码必须扩展普通的旧。AppCompat
AppCompatActivity
Activity
注意:当从 (或子类, ) 更改为 时,还必须将带有 “support” 的各种调用更改为没有 “support” 的相应调用。因此,不要 ,而是 调用 。AppCompatActivity
ActionBarActivity
Activity
getSupportFragmentManager
getFragmentManager
评论
ActionBarActivity
您需要做的就是将文件添加到应用程序标记中。android:theme="@style/Theme.AppCompat.Light"
AndroidManifest.xml
评论
您之所以这样做,是因为您想将 Material Design 应用于之前 sdk 版本中的主题样式到 21。 因此,如果您还想阻止自己对 AppTheme 的自定义,只需更改样式.xml(在 SDK 21 之前),这样就可以继承 App Compat 主题。ActionBarActivity
AppTheme
<style name="AppTheme" parent="android:Theme.Holo.Light.DarkActionBar">
为此:
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
评论
转到您的样式并放置父项
parent="Theme.AppCompat"
而不是
parent="@android:style/Theme.Holo.Light"
评论
这就是为我修复它的原因:我没有在清单中指定主题,而是为每个扩展的活动定义了它:onCreate
ActionBarActivity
@Override
protected void onCreate(Bundle savedInstanceState) {
setTheme(R.style.MyAppTheme);
super.onCreate(savedInstanceState);
setContentView(R.layout.my_activity_layout);
...
}
这里是 的后代,在 xml 中定义。请注意,主题必须在 和 之前设置。MyAppTheme
Theme.AppCompat
super.onCreate
setContentView
评论
将主题样式父级更改为
parent="Theme.AppCompat"
这对我有用......
这个对我有用:
<application
android:allowBackup="true"
android:icon="@mipmap/ic_launcher"
android:label="@string/app_name"
android:theme="@style/AppTheme" >
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/Theme.AppCompat.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
</application>
您的活动正在扩展 ActionBarActivity,这需要应用 AppCompat.theme。 从 ActionBarActivity 更改为 Activity 或 FragmentActivity,它将解决问题。
如果您不使用操作栏,则:
android:theme="@android:style/Theme.Light.NoTitleBar.Fullscreen"
即使该活动确实使用了 Theme.AppCompat,我在三星设备上也遇到了这样的崩溃。 根本原因与三星方面的奇怪优化有关:
- if one activity of your app has theme not inherited from Theme.AppCompat
- and it has also `android:launchMode="singleTask"`
- then all the activities that are launched from it will share the same Theme
我的解决方案只是删除android:launchMode="singleTask"
评论
如果需要扩展 ActionBarActivity,则需要在样式 .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:You need to use a Theme.AppCompat theme (or descendant) with this activity”错误。
对于该错误,您有很多解决方案。
应使用 Activity 或 FragmentActivity,而不是 ActionbarActivity 或 AppCompatActivity
如果要使用 ActionbarActivity 或 AppCompatActivity,则应更改样式.xml Theme.Holo.xxxx 更改为 Theme.AppCompat.Light(如有必要,请添加到 DarkActionbar )
如果不需要有关操作栏或 AppCompat 的高级属性,则不需要使用 Actionbar 或 AppCompat。
在上面的评论中复制@MarkKeen的答案,因为我遇到了同样的问题。
我在帖子的顶部说明了错误,并且在我添加了警报对话框后发生了错误。我在清单中拥有所有相关的样式信息。通过更改警报生成器中的上下文引用解决了我的问题 - 我更改了:
new android.support.v7.app.AlertDialog.Builder(getApplicationContext())
自:
new android.support.v7.app.AlertDialog.Builder(this)
而且没有更多的问题。
评论
getActivity()
this
getContext()
this
在 Android 清单中,只需将活动主题更改为 AppTheme,如下代码片段所示
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme">
</activity>
评论
我遇到了同样的问题,但是当我把它放在清单上时,它解决了:android:theme=“@style/Theme.AppCompat。
<application
android:allowBackup="true"
android:icon="@drawable/icon"
android:label="@string/app_name_test"
android:supportsRtl="true"
android:theme="@style/Theme.AppCompat">
...
</application>
评论
即使我的主题是主题,我的活动是(或,正如其他人的答案所建议的那样),我也遇到了这个问题。因此,我清理、重建并重新运行了这个项目。AppCompat
AppCompatActivity
Activity
(Build -> Clean 项目 ;Build -> Rebuild 项目 ;运行 -> 运行)
它可能看起来很愚蠢,但现在它工作得很好!
只是希望它有所帮助!
评论
就我而言,我的 res 目录中没有 values-v21 文件。然后我创建了它并在其中添加了以下代码:
<style name="AppTheme" parent="Theme.AppCompat.Light.NoActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
评论
对我来说,是使用 ContextThemeWrapper 的解决方案:
private FloatingActionButton getFAB() {
Context context = new android.support.v7.view.ContextThemeWrapper(getContext(), R.style.AppTheme);
FloatingActionButton fab = new FloatingActionButton(context);
return fab;}
更改所需活动的主题。这对我有用:
<activity
android:name="HomeActivity"
android:screenOrientation="landscape"
android:theme="@style/Theme.AppCompat.Light"
android:windowSoftInputMode="stateHidden" />
如果您使用的是应用程序上下文,如下所示:
final AlertDialog.Builder builder = new AlertDialog.Builder(getApplicationContext());
将其更改为如下活动上下文:
final AlertDialog.Builder builder = new AlertDialog.Builder(MainActivity.this);
评论
AlertDialog.Builder()
Context
我也遇到了这个问题,我做了什么来解决它,并且仍然使用 Holo 主题是采取以下步骤:
首先,我替换了这个导入:
import android.support.v7.app.AppCompatActivity;
有了这个:
import android.app.Activity;
然后将我的扩展名从:
public class MyClass extends AppCompatActivity {//...
对此:
public class MyClass extends Activity {//...
并且还必须更改此导入:
import android.support.v7.app.AlertDialog;
到此导入:
import android.app.AlertDialog;
然后,您可以在活动级别的清单中使用主题标记:
android:theme="@android:style/Theme.Holo.Dialog" />
最后,(除非您的项目中有其他类必须使用 v7 appCompat),否则您可以清理并重新构建您的项目,或者在应用级别删除 Gradle 构建文件中的以下条目:
compile 'com.android.support:appcompat-v7:23.2.1'
如果您的项目中有其他类必须使用 v7 appCompat,则只需清理并重新生成项目即可。
我遇到了同样的问题。因为我正在创建自定义导航抽屉。但是我忘了在我的清单中提到这样的主题
android:theme="@style/Theme.AppCompat.NoActionBar"
一旦我将上述主题添加到我的清单中,它就解决了问题。
根据我的经验,问题在于我展示对话的上下文。 在按钮中单击“我以这种方式实例化 AlertDialog”:
builder = new AlertDialog.Builder(getApplicationContext());
但是上下文不正确并导致了错误。我以这种方式使用应用程序上下文对其进行了更改:
在声明部分:
Context mContext;
在 onCreate 方法中
mContext = this;
最后,在我需要 AlertDialog 的代码中:
start_stop = (Button) findViewById(R.id.start_stop);
start_stop.setOnClickListener( new View.OnClickListener()
{
@Override
public void onClick(View v)
{
if (!is_running)
{
builder = new AlertDialog.Builder(mContext);
builder.setMessage("MYTEXT")
.setCancelable(false)
.setPositiveButton("SI", new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
Task_Started = false;
startTask();
}
})
.setNegativeButton("NO",
new DialogInterface.OnClickListener() {
public void onClick(DialogInterface dialog, int id) {
dialog.cancel();
}
});
AlertDialog alert = builder.create();
alert.show();
}
}
}
这是我的解决方案。
评论
说干就干
new AlertDialog.Builder(this)
而不是
new AlertDialog.Builder(getApplicationContext())
评论
this
就我而言,当我尝试显示对话框时,出现了这样的问题。 问题出在上下文中,我使用了 getBaseContext(),理论上它应该返回 Activity 上下文,但似乎不是,或者它在应用任何主题之前返回上下文。
所以我只是用“this”替换了 getBaseContexts(),现在它按预期工作。
Dialog.showAlert(this, title, message,....);
评论
我有一个带有主题的活动,用于在我的 appWidget 中显示对话框,我遇到了同样的问题<android:theme="@android:style/Theme.Dialog">
我通过更改活动代码解决了这个错误,如下所示:
@Override
protected void onCreate(Bundle savedInstanceState) {
setTheme(R.style.Theme_AppCompat_Dialog); //this line i added
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_dialog);
}
评论
请确保在创建新的警报对话框时使用活动上下文,而不是应用程序或基本上下文。
对我来说,在尝试了从这里开始的所有解决方案之后,一个解决方案是改变
<activity
android:name="com.github.cythara.MainActivity"
android:label="Main">
</activity>
要包含主题,请执行以下操作:
<activity
android:name="com.github.cythara.MainActivity"
android:theme="@style/Theme.AppCompat.NoActionBar"
android:label="Main">
</activity>
评论
implementation("com.google.android.material:material:1.9.0")
Theme.Material3.DayNight
Theme.AppCompat
我遇到了同样的问题。
如果要为任何类或方法提供上下文,请提供 YourActivityName.this 而不是 getApplicationContext()。
执行此操作
builder = new AlertDialog.Builder(YourActivity.this);
而不是
builder = new AlertDialog.Builder(getApplicationContext());
万一AndroidX库把你带到了这里......SplashScreen
这是因为也没有:Theme.SplashScreen
R.styleable.AppCompatTheme_windowActionBar
if (!a.hasValue(R.styleable.AppCompatTheme_windowActionBar)) {
a.recycle();
throw new IllegalStateException(
"You need to use a Theme.AppCompat theme (or descendant) with this activity.");
}
这需要在调用 之前将主题切换到 :postSplashScreenTheme
super()
@Override
protected void onCreate(Bundle savedInstanceState) {
/* When switching the theme to dark mode. */
if (savedInstanceState != null) {
this.setTheme(R.style.AppTheme);
}
super.onCreate(savedInstanceState);
/* When starting the Activity. */
if (savedInstanceState == null) {
SplashScreen.installSplashScreen(this);
}
}
那么 from 不会干扰。Theme.SplashScreen
AndroidManifest.xml
也相当相关:使用 时,包含一个桥主题,可以替代 : 。Theme.MaterialComponents
Theme.AppCompat
Theme.MaterialComponents.DayNight.NoActionBar.Bridge
尽管没有继承自:Bridge
Theme.MaterialComponents
Theme.AppCompat
<?xml version="1.0" encoding="utf-8"?>
<resources>
<style name="AppTheme" parent="Theme.MaterialComponents.DayNight.NoActionBar.Bridge" />
<style name="AppTheme.SplashScreen" parent="Theme.SplashScreen" />
</resources>
评论
Theme.MaterialComponents.DayNight.NoActionBar.Bridge
Theme.AppCompat
评论
AppCompat
android:theme="@style/AppTheme" >
AndroidManifest.xml
android:theme
<activity>