Android工具栏中是否可以同时具有后退和菜单按钮?

前端之家收集整理的这篇文章主要介绍了Android工具栏中是否可以同时具有后退和菜单按钮?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
在iOS Amazon应用程序中,他们同时实现了后退和菜单按钮.是否有可能在 Android中实现相同的功能

解决方法

您可以在XML中创建自定义工具栏设计
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:minHeight="?attr/actionBarSize">

    <ImageView
       android:id="@+id/backButton"
       android:background="@drawable/back_icon"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content" />

    <ImageView
       android:id="@+id/homeButton" 
       android:background="@drawable/menu_icon"
       android:layout_width="wrap_content"
       android:layout_height="wrap_content" />
</android.support.v7.widget.Toolbar>

然后设置侦听器以执行诸如openDrawer之类的任务并转到上一屏幕.

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

homeButton.setOnClickListener(new View.OnClickListener() {
    @Override
    public void onClick(View view) {
       drawerLayout.openDrawer(GravityCompat.START);
    }
});

猜你在找的Android相关文章