我需要在导航抽屉的标题中添加操作按钮。但我找不到任何好的解决方案。我需要在我的应用程序中实现此结果:
当您点击该按钮时,您会看到如下内容:
不幸的是,我不知道应该如何将该按钮添加到我的xml中。这是我的抽屉的完整标题.xml:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="280dp"
android:layout_height="240dp"
android:orientation="vertical">
<LinearLayout
android:id="@+id/drawer_header_layout"
android:layout_width="280dp"
android:layout_height="168dp"
android:background="@drawable/placeholder"
android:gravity="bottom"
android:orientation="vertical"
android:theme="@style/ThemeOverlay.AppCompat.Dark">
<ImageView
android:id="@+id/drawer_header_image"
android:layout_width="64dp"
android:layout_height="64dp"
android:layout_marginBottom="8dp"
android:layout_marginLeft="16dp"
android:layout_marginStart="16dp"
android:layout_marginTop="43dp"
android:contentDescription="null"
android:scaleType="centerCrop"
tools:src="@drawable/avatar_circle" />
<TextView
android:id="@+id/drawer_header_name"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="3dp"
android:layout_marginLeft="16dp"
android:layout_marginStart="16dp"
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
android:textColor="@color/bodyTextColor"
android:textStyle="bold"
tools:text="Elizabeth Cray" />
<TextView
android:id="@+id/drawer_header_email"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="9dp"
android:layout_marginLeft="16dp"
android:layout_marginStart="16dp"
android:textAppearance="@style/TextAppearance.AppCompat.Body1"
tools:text="liz@gmail.com"
/>
</LinearLayout>
是否有人知道如何轻松添加该按钮?
由于
答案 0 :(得分:0)
在我看来:您应该将此XML添加到您的res-main
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:id="@+id/miCompose"
android:icon="@drawable/male_profile"
app:showAsAction="ifRoom"
android:title="Your Image ">
</item>
</menu>
你应该在MainActivity中将其称为:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.menu_main, menu);
return true;
}