我注意到这是一个非常常见的问题,但没有一个解决方案对我有效。这是每个人似乎都参考的主线:
升级到AppCompat v22.1.0,现在获得IllegalArgumentException:app compat不支持当前的主题功能
但我试过运气不好。我错过了什么吗??
这是我的清单:
<?xml version="1.0" encoding="utf-8"?>
<manifest xmlns:android="http://schemas.android.com/apk/res/android" android:installLocation="auto">
<uses-sdk />
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.READ_EXTERNAL_STORAGE" />
</manifest>
这是我的风格:
<style name="AppBaseTheme" parent="Theme.AppCompat.Light">
</style>
<style name="AppTheme" parent="AppBaseTheme">
<!-- Both of these are needed -->
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
这是我的基本活动:
public abstract class ActivityBase : MvxCachingFragmentActivityCompat
{
protected override void OnCreate(Bundle bundle)
{
base.OnCreate(bundle);
// Make this activity fullscreen
this.Window.AddFlags(WindowManagerFlags.Fullscreen);
}
.
.
.
}
这是我的示例活动:
[Activity(Label = "Add Child", Theme = "@style/AppTheme")]
public class AddChildPage : ActivityBase, DatePickerDialog.IOnDateSetListener
{
.
.
.
}
我基本上是直接在我测试的活动上设置主题。我没有在清单中设置主题,也没有设置基本活动。
我做错什么了吗?
更新:
按照这些步骤操作后,我很高兴地说错误已经消失,但现在我得到了一个新错误,这是我在介绍AppCompat基本活动之前从未遇到过的错误:
java.lang.NullPointerException: Attempt to invoke virtual method 'int android.view.ViewGroup.getPaddingLeft()' on a null object reference
我会对此进行更多的调查,如果我没有找到答案,我会将Daniele的答案标记为有效,因为它确实修复了我之前的错误。
我面临着同样的问题,下面是我如何解决的。
在清单中,您应该添加:
<application android:label="yourApp" android:theme="@style/AppBaseTheme"></application>
您的基本活动应扩展
:AppCompatActivity
你必须去掉这部分
//将此活动全屏显示。window . add flags(WindowManagerFlags。全屏);
也从你所有的活动中删除
Theme = "@style/AppTheme "
(这样他们就会这样)
[活动(Label=“添加子项”)]
现在,你的风格。xaml应为:
<resources>
<style name="AppBaseTheme" parent="AppBaseTheme.Base">
</style>
<!-- Base theme applied no matter what API -->
<style name="AppBaseTheme.Base" parent="Theme.AppCompat.Light.DarkActionBar">
<!--If you are using revision 22.1 please use just windowNoTitle. Without android:-->
<item name="windowNoTitle">true</item>
<!--We will be using the toolbar so no need to show ActionBar-->
<item name="windowActionBar">false</item>
<!-- colorPrimary is used for the default action bar background -->
<item name="colorPrimary">#2196F3</item>
<!-- colorPrimaryDark is used for the status bar -->
<item name="colorPrimaryDark">#1976D2</item>
<!-- colorAccent is used as the default value for colorControlActivated
which is used to tint widgets -->
<item name="colorAccent">#40FF81</item>
<!-- You can also set colorControlNormal, colorControlActivated
colorControlHighlight and colorSwitchThumbNormal. -->
</style>
</resources>
但您还需要(这是必需的,否则Appcompat将不起作用)在资源下创建一个名为values-v21的新文件夹,该文件夹只能在Android 5设备上看到,在其中您将有其他样式。具有此属性的xaml:
<resources>
<style name="AppTheme" parent="AppTheme.Base">
<item name="android:windowContentTransitions">true</item>
<item name="android:windowAllowEnterTransitionOverlap">true</item>
<item name="android:windowAllowReturnTransitionOverlap">true</item>
<item name="android:windowSharedElementEnterTransition">@android:transition/move</item>
<item name="android:windowSharedElementExitTransition">@android:transition/move</item>
</style>
</resources>
请注意,样式名和父样式需要与另一个样式文件完全相同,并且在清单中声明相同。
现在您需要直接从支持库中引用新的工具栏小部件。如果您还没有在Resources/Layout/下创建一个新的Android布局文件toolbar.axml这样做。该文件如下所示:
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:minHeight="?attr/actionBarSize"
android:background="?attr/colorPrimary"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
通过工具栏设置,我们现在可以使用包含节点将其集成到布局中,以放置工具栏。我知道,以前没有必要在每个布局中包含操作栏,但与此无关:App Compat 要求你在活动布局中包含工具栏。这是一个例子:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:local="http://schemas.android.com/apk/res-auto"
android:layout_width="fill_parent"
android:layout_height="fill_parent">
<include
android:id="@+id/toolbar"
layout="@layout/toolbar" />
<LinearLayout
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:id="@+id/main_content"
android:layout_below="@id/toolbar">
</LinearLayout>
</RelativeLayout>
您不应该更改(或相应地使用您的id和布局toolbar.xaml)的重要部分是:
<include android:id="@+id/toolbar" layout="@layout/toolbar" />
我们几乎完成了:在您的所有活动中添加:
using Toolbar = Android.Support.V7.Widget.Toolbar;
您的OnCreate方法应该这样开始
protected override void OnCreate (Bundle bundle)
{
base.OnCreate (bundle);
// Set our view from the "main" layout resource
SetContentView (Resource.Layout.main);
var toolbar = FindViewById<Toolbar> (Resource.Id.toolbar);
//Toolbar will now take on default actionbar characteristics
SetSupportActionBar (toolbar);
SupportActionBar.Title = "Hello from stackoverflow";
//..
}
只有在设置内容视图之后,您才能设置工具栏。
这些步骤对我很有效,并帮助我更新到AppCompatv7 r22.2据我所知,AppCompatv7 r22.1有一些小错误。从9月29日起,还有一个新版本的AppCompat v7(r.23)
我的应用程序在Android N上运行良好,但在Android M上时崩溃: 奇怪的是,我甚至没有编辑任何与我的应用程序的主题有关的东西,所以这个错误非常奇怪: 致命异常:main Process:com.curlybraceApps.ruchir.Rescuer,PID:20394 java.lang.runtimeException:无法启动活动ComponentInfo{com.curlyb
我已将支持库从v22.2.1更新到v23.0.0,在构建应用程序(minifyEnabled为true)后,我遇到“AppCompat不支持当前主题功能”异常: 调试应用或禁用前置保护(缩小启用 false)时,不会引发异常。仅当启用了专业警卫时,它才会投掷。 主题: Proguard文件: 我已经尝试了这个问题的答案:升级到AppCompat v22.1.0,现在得到IllegalArgumen
问题内容: 我试图将项目从Eclipse迁移到Android Studio。终于我能够运行它了,但是在某个时候我遇到了这个异常,而我在谷歌上对此一无所获: 73. MainActivity行是: 请给我建议。 问题答案: 替代@sbaar的答案, 保持到并加入以及和它设置为。 即
我试图将一个项目从Eclipse迁移到Android Studio。最后,我能够运行它,但是在某个时候我得到了这个例外,我在谷歌上没有发现任何关于这个的东西: 73.主要活动是: 如果可以的话,请告诉我。
所以我认为这是v22的常见问题,但当前的解决方案似乎并没有解决我的错误。我尝试将android: windowActionBar设置为false,将android: windowNoTitle设置为true,但这似乎没有帮助。 这是我的错误消息 这是我的styles.xml 也许我只是输入了错误的代码,所以希望有人能告诉我哪里出错了。谢谢你的时间。 编辑:我知道这个问题以前有人问过,但是目前所有的
我在运行时收到以下错误,并且活动未启动。错误显示在请帮忙。 我正在使用以下库: 错误是: Android运行时间: 致命异常: 主 进程: com.app.android.hashmap, PID: 26336 java.lang.运行时异常: 无法启动活动 组件信息{com.app.android.hashmap/com.app.android.hashmap.MainActivity}: ja