すべての活動のレイアウトファイルでこれを含めるその後
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="?attr/colorPrimary"
/>
toobar.xmlという名前のレイアウトを作成します。その後(のonCreateで開始
<include layout="@layout/toolbar" />
)すべての活動の:
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
テーマを作成してデフォルトのActionBarを削除する:
マニフェストで
<style name="AppTheme.NoActionBar">
<item name="windowActionBar">false</item>
<item name="windowNoTitle">true</item>
</style>
セットテーマ:
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:theme="@style/AppTheme.NoActionBar" />
・ホープ、このことができます。
これを参照してください:http://stackoverflow.com/questions/32772989/i-have-to-create-one-toolbar-for-each-activity-in-my-android-app – rafsanahmad007