导航抽屉工具栏在三星皮肤上不可见

时间:2017-01-30 18:04:10

标签: android android-layout android-actionbar navigation-drawer toolbar

我有一个导航抽屉活动,工作正常,但当我在三星s3上运行它,它只是没有显示上面的工具栏,但如果我从侧面拖动它将打开抽屉,我读到这是关于三星的皮肤,但我找不到解决方法.. 如何创建一个导航抽屉工具栏,它将在三星皮肤上显示相同的效果并显示。

这是app_bar_main:

    <?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.nightme.nightme.MainActivity">

    <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"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:background="#14418a"
            android:theme="@style/ThemeOverlay.AppCompat.Dark"
             >

        <TextView
            android:id="@+id/toolbar_title"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:textSize="30dp"
            android:text="App"
            android:layout_gravity="center"
            />

            <ImageView
                android:id="@+id/add"
                android:layout_width="36dp"
                android:layout_height="36dp"
                android:src="@drawable/add_paint"
                android:layout_gravity="end"
                />
        </android.support.v7.widget.Toolbar>
    </android.support.design.widget.AppBarLayout>

    <include layout="@layout/rec_activity" />



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

1 个答案:

答案 0 :(得分:0)

如果我正确理解您的问题,您是说没有显示打开导航抽屉的3行工具栏图标?

该图标由ActionBarDrawerToggle类设置。您必须在活动的onCreate中创建它,如下所示:https://developer.android.com/training/implementing-navigation/nav-drawer.html#ActionBarIcon