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>
创建这样的对话框是我一直在做的事情,因为我已经完成了布局。
谁能告诉我如何解决这个问题?
最小SDK为10。ActionBar从api级别11可用。因此,对于10,您将使用来自支持库的AppCompat,您需要使用Theme。AppCompat或其后代。
Use
android:theme="@style/Theme.AppCompat" >
或者如果你不想在顶部的操作栏
android:theme="@style/Theme.AppCompat.NoActionBar">
更多信息@
http://developer.android.com/guide/topics/ui/actionbar.html
编辑:
我可能看错了行动报告。
似乎op想要一个带有活动主题的对话框。正如Bobbake4所建议的,扩展Activity而不是ActionBarActivity。
也可以看看下面链接中的@ Dialog Attributes
http://grepcode.com/file/repository.grepcode.com/java/ext/com.google.android/android/4.4_r1/frameworks/base/core/res/res/values/themes.xml/
你遇到这个问题的原因是因为你试图应用对话框主题的活动正在扩展ActionBarActivity,这需要应用AppCompat主题。
更新:扩展AppCompatActivity也会有这个问题
在本例中,将Java继承从ActionBarActivity更改为Activity,并在清单中保留对话框主题,即非theme。AppCompat价值
一般的规则是,如果你想让你的代码支持旧版本的Android,它应该有AppCompat主题,java代码应该扩展AppCompat活动。如果你有一个活动不需要这种支持,比如你只关心Android的最新版本和功能,你可以应用任何主题,但java代码必须扩展普通的旧活动。
注意:当从AppCompatActivity(或子类ActionBarActivity)更改为Activity时,也必须将各种带有“support”的调用更改为相应的不带“support”的调用。因此,调用getFragmentManager而不是getSupportFragmentManager。
注意:我本来打算用这个作为答案,但进一步的测试显示,从命令行使用maven构建时仍然会失败,所以我不得不对它进行编辑,使之成为一个问题!: - (
在我的情况下,当我得到这个错误时,我已经在使用AppCompat主题和错误没有多大意义。
我正在构思我的安卓系统。我已经依赖于apklib和jar版本的应用程序compat,因此:
<!-- See https://github.com/mosabua/maven-android-sdk-deployer -->
<dependency>
<groupId>android.support</groupId>
<artifactId>compatibility-v7-appcompat</artifactId>
<version>${compatibility.version}</version>
<type>apklib</type>
</dependency>
<dependency>
<groupId>android.support</groupId>
<artifactId>compatibility-v7-appcompat</artifactId>
<type>jar</type>
</dependency>
<dependency>
<groupId>android.support</groupId>
<artifactId>compatibility-v7</artifactId>
<type>jar</type>
</dependency>
<dependency>
<groupId>android.support</groupId>
<artifactId>compatibility-v4</artifactId>
</dependency>
现在,当我导入maven项目并从IntelliJ构建和运行时,一切都好了。
但是当我使用maven从命令行构建、部署和运行时,我仍然会得到这个异常。
我也有这个问题,我做了什么来解决它,仍然使用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,那么只需清理并重新构建项目。
根据我的经验,问题在于我展示对话的环境。
在一个按钮点击中,我以这样的方式实例化了一个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();
}
}
}
这就是我的解决方案。
这真的迫使我张贴我自己的答案。
因为我正在使用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>
当你使用Kotlin时,没有什么能解决我的问题,直到我将生成器参数从“applicationContext”更改为“this”。
这行不通
val dialogDelete = AlertDialog.Builder(applicationContext)
.setTitle("Confirmation")
.setMessage("Delete this photo?")
.setNegativeButton(android.R.string.no){ it, which ->
it.dismiss()
}
dialogDelete.show()
遵循代码工作
val dialogDelete = AlertDialog.Builder(this)
.setTitle("Confirmation")
.setMessage("Delete this photo?")
.setNegativeButton(android.R.string.no){ it, which ->
it.dismiss()
}
dialogDelete.show()
如果AndroidX SplashScreen库把你带到这里…
这是因为Theme。SplashScreen也没有r.s eleable . 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.");
}
这需要在调用super()之前将主题切换到postSplashScreenTheme:
@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);
}
}
然后是主题。来自AndroidManifest.xml的SplashScreen不会干扰。
同样相关的还有:当使用Theme时。MaterialComponents,有一个桥主题包含,它作为主题的替代品。AppCompat: Theme.MaterialComponents.DayNight.NoActionBar.Bridge。
这个桥的主题工作尽管主题。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>
当我试图将这个免费的资源管理器模块(NoNonsense - FilePicker)添加到我当前的应用程序时,我得到了这个异常:
illegalstateexception:您需要使用主题。AppCompat主题(或后代)
为使模块工作而添加的代码是在之前的App中的styles.xml文件中,并且它工作得很好:
<!-- You can also inherit from NNF_BaseTheme.Light -->
<style name="FilePickerTheme" parent="NNF_BaseTheme">
<!-- Set these to match your theme -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<!-- Setting a divider is entirely optional -->
<item name="nnf_list_item_divider">?android:attr/listDivider</item>
<!-- Need to set this also to style create folder dialog -->
<item name="alertDialogTheme">@style/FilePickerAlertDialogTheme</item>
<!-- If you want to set a specific toolbar theme, do it here -->
<!-- <item name="nnf_toolbarTheme">@style/ThemeOverlay.AppCompat.Dark.ActionBar</item> -->
</style>
<style name="FilePickerAlertDialogTheme" parent="Theme.AppCompat.Dialog.Alert">
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
</style>
但这在最近的应用程序中不起作用。解决方案很简单,我只是将代码移动到themes.xml文件(并从styles.xml文件中删除它)。
出于某种原因,现代版本有了细微的变化。这是显而易见的,但如果某样东西起作用了,那么它通常是正确的方式……