私はカスタムアクションバーを使用してみました:ナビゲーション・ドロワー付きのカスタム・アクション・バーを追加するには?
bar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
bar.setCustomView(R.layout.xyz);
が、ナビゲーション引き出しが見えなくなります。
私はカスタムアクションバーを使用してみました:ナビゲーション・ドロワー付きのカスタム・アクション・バーを追加するには?
bar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
bar.setCustomView(R.layout.xyz);
が、ナビゲーション引き出しが見えなくなります。
私は同じ問題を抱えていましたが、問題を回避する方法を見つけました。
getActionBar().setCustomView(R.layout.xyz);
getActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM | ActionBar.DISPLAY_SHOW_HOME | ActionBar.DISPLAY_HOME_AS_UP);
次に、ナビゲーションドロワー+アイコンが表示されます。
アイコンを表示したくない場合は、透明アイコン(透明な画像transparent.png
を作成して、ドロウアブルフォルダに入れてください)をアプリアイコンの代わりに置くことができます。 ActionBar.DISPLAY_SHOW_HOME | | actionBar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOMは
getActionBar().setCustomView(R.layout.xyz); getActionBar().setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM | ActionBar.DISPLAY_SHOW_HOME);
私の仕事:あなたは、アクションバー(styles.xml
)のための新しいスタイルを定義することによってそれを行うことができます);
をActionBar.DISPLAY_HOME_AS_UP:
<style name="Theme.MyAppTheme" parent="android:style/Theme.Holo.Light">
<item name="android:actionBarStyle">@style/Theme.MyAppTheme.ActionBar</item>
</style>
<style name="Theme.MyAppTheme.ActionBar" parent="android:style/Widget.Holo.Light.ActionBar">
<item name="android:icon">@drawable/transparent</item>
</style>
透明アイコンを追加しても機能しない場合は、上のケースのアクションバーからアプリアイコンを削除する方法を教えてください。 – mark
@アイコンを削除するためのマークactionBar.setIcon(android.R.color.transparent); – khurramengr
@didiナビゲーションの引き出しアイコンはまだ見えません、どんなアイデアですか? – khurramengr