1. ホーム
  2. android

[解決済み] Androidツールバーのセンタータイトルとカスタムフォント

2022-03-23 02:23:08

質問

ツールバーのタイトルにカスタムフォントを使用し、ツールバーの中央に配置する正しい方法を見つけようとしています(クライアントの要件)。

現在、私は古き良きActionBarを使用しており、タイトルを空値に設定した上で setCustomView を使用して、カスタムフォントのTextViewを配置し、ActionBar.LayoutParamsを使用して中央に配置しました。

もっと良い方法はないでしょうか?新しいツールバーをActionBarとして使用する。

どのように解決するのですか?

カスタムタイトルを使用するには Toolbar を覚えておくだけでよいのです。 Toolbar は単なる空想のViewGroupなので、このようにカスタムタイトルを追加することができます。

<android.support.v7.widget.Toolbar
    android:id="@+id/toolbar_top"
    android:layout_height="wrap_content"
    android:layout_width="match_parent"
    android:minHeight="?android:attr/actionBarSize"
    android:background="@color/action_bar_bkgnd"
    app:theme="@style/ToolBarTheme" >


     <TextView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Toolbar Title"
        android:layout_gravity="center"
        android:id="@+id/toolbar_title" />


    </android.support.v7.widget.Toolbar>

つまり TextView というのは、これは通常の TextView . ですから、あなたのアクティビティでは、このようにタイトルにアクセスすることができます。

Toolbar toolbarTop = (Toolbar) findViewById(R.id.toolbar_top);
TextView mTitle = (TextView) toolbarTop.findViewById(R.id.toolbar_title);