これはデフォルトのActionBarでメソッド名の「サポート」を削除するだけです)、
アクティビティで、onCreate()
メソッドで:
getSupportActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
getSupportActionBar().setCustomView(R.layout.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" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"
android:text="my Title"
android:textColor="#ffffff"
android:id="@+id/mytext"
android:textSize="18sp" />
</LinearLayout>
今、あなただけのタイトルのアクションバーを持っている必要があります。カスタム背景を設定する場合は、上記のレイアウトで設定します(ただし、android:layout_height = "match_parent"を設定することを忘れないでください)。