独自のレイアウトでカスタムタイトルバーを作成しました。タイトルバーにテキストを水平方向の中央に揃えて表示したい(=デフォルトのタイトルバーと同じ)。しかし、これは私にはうまくいきません。私のテキストは、中央ではなく、フィトルバーの上部に揃えられています。アドバイスをいただけますか?
私はこのコードを使用しています:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical"
android:background="@drawable/top_back">
<TextView
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:id="@+id/title"
android:layout_gravity="center_vertical"
android:paddingLeft="15dip"
/>
</LinearLayout>