我尝试使用自定义操作栏作为:
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并放入可绘制文件夹)而不是应用程序图标.您可以通过为Action Bar(styles.xml)定义新样式来实现此目的:
<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>