操作栏上的Android主页按钮不会出现

时间:2016-02-06 08:39:15

标签: android android-actionbar android-toolbar

我遇到了这个奇怪的问题,工具栏上的主页按钮没有显示。

activity_main.xml中

    <?xml version="1.0" encoding="utf-8"?>

<android.support.v4.widget.DrawerLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/drawer_layout"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:elevation="@dimen/design_navigation_elevation"
    android:fitsSystemWindows="true"
    tools:context="my.app.MainActivity">

    <android.support.design.widget.CoordinatorLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent">

        <include layout="@layout/toolbar"/>
        <include layout="@layout/content_main"/>
        <include layout="@layout/fab"/>

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

    <android.support.design.widget.NavigationView
        android:id="@+id/navigation_drawer"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        app:headerLayout="@layout/navigation_drawer_header"
        app:menu="@menu/menu_navigation_drawer"/>

</android.support.v4.widget.DrawerLayout>

toolbar.xml

    <?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.AppBarLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    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>

MainActivity.java

public class MainActivity extends AppCompatActivity {

private Toolbar toolbar;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

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

    setSupportActionBar(toolbar);
    getSupportActionBar().setDisplayShowHomeEnabled(true);

我有另一个使用相同方法的应用程序,工作正常。有什么想法吗?

1 个答案:

答案 0 :(得分:1)

你已经拥有:

<android.support.design.widget.NavigationView
        android:id="@+id/navigation_drawer"
        android:layout_width="wrap_content"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        app:headerLayout="@layout/navigation_drawer_header"
        app:menu="@menu/menu_navigation_drawer"/>

它有一个默认图标:

enter image description here

看一下这篇博客:codetheory.in (web.archive)

其中说:

  

setHomeButtonEnabled(已启用布尔值)

     

这个方法实际上类似于前一个方法(setDisplayHomeAsUpEnabled(boolean showHomeAsUp)),除了   左侧插入符号 除非显示   已指定android:parentActivityName

相反,尝试使用:

getSupportActionBar().setDisplayHomeAsUpEnabl‌​‌​ed(true);

然后, 它应该没有Drawer我猜 。因为它有一个默认图标。

使用我建议的代码enter image description here

检查没有Drawer的结果

不知何故,你不需要那个。