我正在尝试使用Android设计支持库开发一个简单的测试应用程序,但我无法理解为什么工具栏出现在AppBarLayout下面:
我的styles.xml是:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<!-- Customize your theme here. -->
<item name="colorPrimary">@color/colorPrimary</item>
<item name="colorPrimaryDark">@color/colorPrimaryDark</item>
<item name="colorAccent">@color/colorAccent</item>
<!-- ActionMode -->
<item name="windowActionModeOverlay">true</item>
<item name="android:windowActionModeOverlay">true</item>
<item name="android:actionModeBackground">@color/colorAccent</item>
<item name="android:actionModeSplitBackground">@color/colorPrimary</item>
<item name="android:actionModeStyle">@style/AppTheme.ActionMode</item>
</style>
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
<item name="android:windowDrawsSystemBarBackgrounds">true</item>
</style>
<style name="AppTheme.ActionMode" parent="@style/Widget.AppCompat.ActionMode">
<item name="android:background">?android:attr/actionModeBackground</item>
<item name="android:backgroundSplit">?android:attr/actionModeSplitBackground</item>
<item name="android:height">?android:attr/actionBarSize</item>
<!--<item name="android:titleTextStyle">@android:style/TextAppearance.Widget.ActionMode.Title</item>
<item name="android:subtitleTextStyle">@android:style/TextAppearance.Widget.ActionMode.Subtitle</item>-->
</style>
<style name="AppTheme.AppBarOverlay" parent="ThemeOverlay.AppCompat.Dark.ActionBar" />
<style name="AppTheme.PopupOverlay" parent="ThemeOverlay.AppCompat.Light" />
</resources>
我的布局是:
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/coordinator"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
tools:context=".MainActivity">
<android.support.design.widget.AppBarLayout
android:id="@+id/app_bar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:theme="@style/AppTheme.AppBarOverlay">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
app:popupTheme="@style/AppTheme.PopupOverlay" />
</android.support.design.widget.AppBarLayout>
<fragment android:id="@+id/items_fragment"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
class="it.bmsoftware.advancedrecyclerapp.MainFragment"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:tag="items_fragment"
tools:layout="@layout/fragment_recycler" />
</android.support.design.widget.CoordinatorLayout>
有谁知道我缺少什么?
提前致谢:)
答案 0 :(得分:1)
AppbarLayout只包装工具栏,使其在Actionbar上修复。 并再次查看代码。
另一个问题是你在Android工作室的编辑器预览中使用AppTheme,如果你使用工具栏然后选择NoActionBar主题则不正确,然后你将首先看到工具栏。 我认为你假设工具栏的Appbarlayout顶部,但实际上是它的Actionbar。