私のアプリケーションでは、ActionBar
ナビゲーション モードとしてタブを使用しています。View
に別の「行」を追加するカスタムも使用しActionBar
ます。セットアップは次のようになります。
final ActionBar actionBar = getActionBar();
actionBar.setNavigationMode(ActionBar.NAVIGATION_MODE_TABS);
actionBar.setDisplayShowHomeEnabled(true);
actionBar.setDisplayUseLogoEnabled(false);
actionBar.setDisplayShowCustomEnabled(true);
actionBar.setCustomView(R.layout.ab);
Typeface font = Typeface.createFromAsset(getAssets(), "cs_regular.ttf");
TextView title = (TextView) actionBar.getCustomView().findViewById(R.id.tvActionTitle);
title.setTypeface(font);
問題:アイコンを表示したくないのですがactionBar.setDisplayShowHomeEnabled(false);
、カスタム レイアウトを使用すると、タブの下に配置され、タブの上に配置する必要がありActionBar
ます。必要に応じてレイアウトを配置するように設定しtrue
ますが、不要なアイコンが表示されます..何か提案はありますか?