アプリケーション アクティビティ メニュー バーのタイトルを変更しようとしています。次のようにフォントを変更することができました。誰でもタイトルの名前を変更するのを手伝ってください。1行だけかもしれませんが、わかりません。
int actionBarTitle = Resources.getSystem().getIdentifier("action_bar_title", "id", "android");
TextView actionBarTitleView = (TextView) getWindow().findViewById(actionBarTitle);
if(actionBarTitleView != null){
actionBarTitleView.setTypeface(typeFace);
}