我使用this way制作了一个导航抽屉并将其显示在我的活动中。然后,我在基本布局中添加了Toolbar
。这些步骤之后,我尝试this way在我的活动中显示三个点。 (我对基本布局及其类进行了所有更改。)
然后,我发现自己的活动没有任何变化。我认为我应该使用另一种方法在基本活动中添加三个点。我该怎么办?
app_base_layout.xml
<?xml version="1.0" encoding="utf-8"?>
<android.support.v4.widget.DrawerLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:local="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/drawer_layout"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fitsSystemWindows="true"
android:layoutDirection="rtl"
tools:openDrawer="right">
<FrameLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/colorPrimary"
android:minHeight="?attr/actionBarSize"
local:popupTheme="@style/ThemeOverlay.AppCompat.Light"
local:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<TextView
android:id="@+id/toolbar_title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:textColor="@android:color/white"
android:textSize="20sp"/>
</android.support.v7.widget.Toolbar>
<FrameLayout
android:id="@+id/view_stub"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_marginTop="?attr/actionBarSize"/>
</FrameLayout>
<android.support.design.widget.NavigationView
android:id="@+id/navigation_view"
android:layout_width="@dimen/nav_header_width"
android:layout_height="match_parent"
android:layout_gravity="right"
app:headerLayout="@layout/drawer_header"
app:menu="@menu/drawer"/>
</android.support.v4.widget.DrawerLayout>
AppBaseActivity.java 与this差不多(有一些小改动)。
答案 0 :(得分:7)
您可以从Google素材图标下载vertical more
图标,提取并添加到您的resource/drawable
文件夹中:
https://material.io/tools/icons/?search=more&icon=more_vert&style=baseline
在menu
文件夹中创建您要填充到xml
的{{1}}:
Toolbar
在<?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/moreVertical"
android:icon="@drawable/baseline_vertical_24dp" <!--or whatever you called it -->
android:title="@string/more"
app:showAsAction="ifRoom" />
中覆盖onCreateOptionsMenu
,例如:
Actvity
将您的@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.your_menu, menu);
return true;
}
与它的Toolbar
连接起来,然后使用:
id
答案 1 :(得分:0)