我想在我的自定义操作栏上添加溢出菜单。我知道,我可以添加新的设置活动,但这太令人困惑了,我想知道添加这些活动的确切代码。
我看过的帖子很少,但仅限于较旧的 SDK。因为我正在为我的操作栏使用自定义布局。请帮助我,以便代码适用于 Android 8.0 和低于该版本的 sdk。
我的代码如下:
HomescreenActivity.java :-
@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_homescreen);
getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
getSupportActionBar().setCustomView(R.layout.abs_layout);
}
activity_homescreen.xml:-
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:background="@drawable/paper_planes_color_bg"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".HomescreenActivity">
<android.support.v7.widget.RecyclerView
android:layout_marginTop="15dp"
android:id="@+id/recy_category"
android:layout_width="match_parent"
android:layout_height="match_parent">
</android.support.v7.widget.RecyclerView>
</RelativeLayout>
abs_layout.xml :-
<?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="wrap_content"
android:orientation="vertical">
<android.support.v7.widget.AppCompatTextView
android:id="@+id/tvTitle"
style="@style/TextAppearance.AppCompat.Widget.ActionBar.Title"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:gravity="center"
android:textColor="#FFFFFF" />
</LinearLayout>