LollipopとAppCompat-v7ライブラリで導入された、新しく追加されたツールバーの使用に取り組んでいます。ツールバーの設定についてこのガイドに従いましたが、コンテキストアクションバー(コピー/貼り付けのためにテキストを強調表示するなど)を表示するものを呼び出すと、ページ上でツールバーが押し下げられることに気付きました。ページの下部にある画像で、私が話していることを確認できます。
なので、基本的にはこう設定しました。インクルードタグで使用するxmlファイルでツールバーを定義しています。
<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="wrap_content"
android:background="?attr/colorPrimary"/>
次に、それを自分のビューでインスタンス化します。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:id="@+id/root"
tools:context=".MainActivity">
<include
layout="@layout/toolbar"
android:layout_width="match_parent"
android:layout_height="wrap_content"/>
<!-- Rest of view -->
</LinearLayout>
コードでは、次のように設定します。
// On Create method of activity:
Toolbar toolbar = (Toolbar) findViewById(R.id.toolbar);
setSupportActionBar(toolbar);
Contextual ActionBarがツールバーの上に来るようにする方法を誰かが知っていますか?