툴바와 탐색 서랍이 있습니다. 앱을 시작하면 도구 모음과 탐색 창이 만들어집니다. 탐색 창에서 항목을 클릭하면 새 조각이 시작되고 동일한 도구 모음이 유지됩니다. 기본적으로 특정 조각을 시작할 때 검색, 추가, 편집과 같은 메뉴 항목을 도구 모음에 추가하려면 어떻게해야합니까? 프로그램 시작시 원하지 않지만 동적으로 생성되었습니다. 또한 이러한 버튼을 클릭하여 다른 조각을 시작하도록하려면 어떻게해야합니까? 한 조각에서 도구 모음의 편집 단추가 다른 조각의 편집 단추에 비해 특정 작업을 수행하기를 원합니다. 감사!
Menu_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/edit"
android:orderInCategory="1"
android:title="Edit"
app:showAsAction="always"
android:icon="@drawable/pencil_icon"/>
<item android:id="@+id/add"
android:orderInCategory="1"
android:title="Add"
app:showAsAction="always"
android:icon="@drawable/plus_icon"/>
도구 모음 :
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar
xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="55dp"
android:background="#10a1ff"
android:title="Home"
/>