制作带有菜单图标的工具栏,例如亚马逊应用程序

时间:2018-08-06 18:04:59

标签: android android-layout android-studio android-toolbar android-design-library

我正在尝试制作带有菜单图标的工具栏,例如亚马逊应用程序。但是工具栏菜单图标设置不正确。实际上,所有菜单图标已设置为从左到右。我需要在右侧设置后退图标和导航图标,在中心设置应用程序徽标,在左侧设置其他图标。

enter image description here

菜单代码...

<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    >
    <item
        android:id="@+id/action_bookmark"
        android:icon="@drawable/ic_bookmark_white_24dp"
        android:orderInCategory="100"
        android:title="@string/action_bookmark"
        app:showAsAction="always" />

    <item
        android:id="@+id/action_back"
        android:icon="@drawable/ic_keyboard_arrow_left_white_24dp"
        android:orderInCategory="101"
        android:title="@string/action_back"
        app:showAsAction="always" />

    <item
        android:id="@+id/texttite"
        android:icon="@mipmap/ic_launcher"
        android:orderInCategory="102"
        android:title="@string/action_forward"
        android:titleCondensed="hello........"
        app:showAsAction="always" />


    <item
        android:id="@+id/action_forward"
        android:icon="@drawable/ic_keyboard_arrow_right_white_24dp"
        android:orderInCategory="103"
        android:title="@string/action_forward"
        app:showAsAction="always" />

    <item
        android:id="@+id/action_bookmark1"
        android:icon="@drawable/ic_bookmark_white_24dp"
        android:orderInCategory="104"

        android:title="@string/action_bookmark"
        app:showAsAction="always" />


</menu>

我需要这种类型的工具栏。我尝试这样做,但没有成功。请帮助我...

enter image description here

2 个答案:

答案 0 :(得分:1)

您可以根据需要像其他布局一样自定义工具栏布局。请仅使用按钮在下面的示例布局中查找。enter image description here

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

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"

    android:orientation="vertical">

    <android.support.v7.widget.Toolbar
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="@color/colorBlack">

        <LinearLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content">

            <LinearLayout
                android:layout_width="0dp"
                android:layout_height="wrap_content"
                android:layout_weight="1">

                <Button
                    android:layout_width="50dp"
                    android:layout_height="wrap_content"
                    android:text="<" />

                <Button
                    android:layout_width="50dp"
                    android:layout_height="wrap_content"
                    android:text="=" />

                <TextView
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:text="Custom"
                    android:textColor="@color/backgroundColorGenericWhite"
                    android:textSize="22sp" />
            </LinearLayout>

            <Button
                android:layout_width="50dp"
                android:layout_height="wrap_content"
                android:text="=" />
        </LinearLayout>

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

答案 1 :(得分:0)

这是自定义工具栏代码

  <android.support.design.widget.AppBarLayout
            android:id="@+id/appbar"
            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"
                android:padding="0px"
                android:layout_margin="0px"
                app:popupTheme="@style/AppTheme.PopupOverlay" >
            </android.support.v7.widget.Toolbar>
    </android.support.design.widget.AppBarLayout>