我注意到这是一个非常常见的问题,但没有一个解决方案对我有用。这是每个人似乎都参考的主线:
但是我试过没有运气。我错过了什么吗?
这是我的清单:
<?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>
这是我的 styles.xaml :
<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的答案标记为有效,因为它确实修复了我之前的错误。
答案 0 :(得分:1)
我遇到了同样的问题,这就是我的解决方法。
在清单中你应该添加:
<application android:label="yourApp" android:theme="@style/AppBaseTheme"></application>
您的基础活动应该延长
:AppCompatActivity
你必须删除 这部分
//全屏显示此活动 this.Window.AddFlags(WindowManagerFlags.Fullscreen);
同样从您的所有活动中删除
Theme =“@ style / AppTheme”
(这样他们就会这样)
[活动(标签=“添加儿童”)]
现在,您的styles.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不会工作)在Resources下面创建一个名为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 / toolbar.axml下创建新的Android布局文件,请执行此操作。该文件将如下所示:
<?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" />
通过工具栏设置,我们现在通过使用include节点放置工具栏将其集成到您的布局中。 我知道,之前没有必要在每个布局中包含操作栏,但是它没有任何关系: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";
//..
}
只有在设置ContentView后,您才能设置工具栏。
这些步骤对我有用,并帮助我更新到AppCompatv7 r22.2 据我所知,AppCompatv7 r22.1有一些小错误。 从9月29日起,还有一个新版本的AppCompat v7(r.23)