答案 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>