如何将导航栏中的项目图标设置为项目的右侧?

时间:2017-05-05 05:29:56

标签: android navigation icons toggle drawer

我希望左侧图标保持原样,我只想在项目的右侧再添一个图标。
请查看下图,它将帮助您了解我的要求。

enter image description here

1 个答案:

答案 0 :(得分:-1)

如果您使用抽屉布局或导航抽屉,那么它会对您有所帮助。

只需要使用以下线性布局替换导航菜单布局,并且需要从活动中删除所有与菜单相关的代码,

<LinearLayout
        android:layout_width="220dp"
        android:layout_height="match_parent"
        android:layout_gravity="start"
        android:background="@color/white"
        android:orientation="vertical">
        <LinearLayout
            android:layout_width="match_parent"
            android:orientation="horizontal"
            android:layout_height="wrap_content">
            <ImageView
                android:layout_width="wrap_content"
                android:src="@drawable/places_ic_search"
                android:layout_height="wrap_content" />
            <ImageView
                android:layout_width="wrap_content"
                android:src="@drawable/places_ic_search"
                android:layout_height="wrap_content" />
            <TextView
                android:layout_width="wrap_content"
                android:text="Hello"
                android:layout_height="wrap_content" />
        </LinearLayout>
    </LinearLayout>