//さまざまなコンテンツを含む異なる TextView をテキストとして設定しています。私が行っているのは、すべてのテキストビューの書体を設定することです。カスタムフォントも正常に表示されます。
((TextView) findViewById (R.id.tutor_ps_tv_home)) .setTypeface(mFace);
((TextView) findViewById (R.id.tutor_ps_tv_plus)) .setTypeface(mFace);
((TextView) findViewById (R.id.tutor_ps_tv_settings)) .setTypeface(mFace);
((TextView) findViewById (R.id.tutor_ps_tv_undo)) .setTypeface(mFace);
((TextView) findViewById (R.id.tutor_ps_tv_cam)) .setTypeface(mFace);
((TextView) findViewById (R.id.tutor_ps_tv_share)) .setTypeface(mFace);
//すべてのテキスト ビューに 1 つの ID のみを設定して、以下のように書体を変更することは可能ですか。
android:id="@+id/all_textview"
android:id="@id/all_textview"
android:id="@id/all_textview"
android:id="@id/all_textview"
//そして、アクティビティで次のように設定します
((TextView) findViewById (R.id.all_textview)) .setTypeface(mFace);
// これに適したソリューションを知っている人はいますか?
注:書体を他のものではなく変更したり、テキストビューで使用したいだけです。