工具栏底部边缘显示工具栏向上箭头图标

时间:2016-05-23 18:45:06

标签: android android-actionbar android-toolbar

我在我的应用程序中使用以下依赖项。但是工具栏底部边缘显示工具栏向上箭头图标。我的代码中有任何问题吗?

compileSdkVersion 23
    buildToolsVersion '22.0.1'

    defaultConfig {
        applicationId "com.company.appname"
        minSdkVersion 19
        targetSdkVersion 22
        versionCode 1
        versionName "1.0.0"
 }

dependencies {
    compile('com.android.support:cardview-v7:23.2.0') {
        force = true
    }
    compile 'com.android.support:design:23.3.0'
    compile 'com.android.support:gridlayout-v7:23.3.0'
    compile 'com.android.support:recyclerview-v7:23.3.0'
    compile 'com.android.support:support-v4:23.3.0'
    compile 'com.google.android.gms:play-services-ads:8.4.0'
}

GalleryActivity.java

        Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
        setSupportActionBar(toolbar);

        getSupportActionBar().setDisplayUseLogoEnabled(false);
        getSupportActionBar().setDisplayShowTitleEnabled(false);
        getSupportActionBar().setDisplayShowHomeEnabled(true);
        getSupportActionBar().setDisplayHomeAsUpEnabled(true);

        TextView toolBarTitleTextView = (TextView) findViewById(R.id.gallery_activity_toolbar_title);
        toolBarTitleTextView.setText(R.string.title_gallery_fragment);

activity_gallery.xml

<?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:layout_width="match_parent"
    android:layout_height="match_parent"
    android:fitsSystemWindows="true"
    tools:context="com.company.appname.activities.GalleryActivity">

    <android.support.design.widget.AppBarLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:theme="@style/AppTheme.AppBarOverlay">

        <android.support.v7.widget.Toolbar
            android:id="@+id/toolbar"
            style="@style/AppTheme.ToolbarOverlay"
            android:layout_width="match_parent"
            android:layout_height="?attr/actionBarSize"
            android:background="?attr/colorPrimary"
            android:fitsSystemWindows="true"
            app:popupTheme="@style/AppTheme.PopupOverlay">

            <TextView
                android:id="@+id/gallery_activity_toolbar_title"
                style="@style/App.Widget.TextView.Toolbar.Title"
                android:layout_width="wrap_content"
                android:layout_height="wrap_content" />

        </android.support.v7.widget.Toolbar>

    </android.support.design.widget.AppBarLayout>

    <fragment
        android:id="@+id/gallery_fragment"
        android:name="com.company.appname.fragments.GalleryFragment"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        app:layout_behavior="@string/appbar_scrolling_view_behavior"
        tools:showIn="@layout/activity_gallery" />

</android.support.design.widget.CoordinatorLayout>

enter image description here

3 个答案:

答案 0 :(得分:1)

尝试将android:fitsSystemWindows="true"添加到AppBarLayout

答案 1 :(得分:1)

背后的主要原因是android:fitsSystemWindows="true"奇怪的是它为什么不起作用。

您可以尝试这种备用解决方案。 以您的风格提供此属性。

<item name="android:fitsSystemWindows">true</item>

答案 2 :(得分:0)

从CoordinatorLayout中删除了android:fitsSystemWindows =“true”。它很棒!