android – 如何使用导航抽屉添加自定义操作栏?

前端之家收集整理的这篇文章主要介绍了android – 如何使用导航抽屉添加自定义操作栏?前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我尝试使用自定义操作栏作为:
bar.setDisplayOptions(ActionBar.DISPLAY_SHOW_CUSTOM);
        bar.setCustomView(R.layout.xyz);

但导航抽屉变得不可见.

@H_301_6@

解决方法

我有同样的问题,但我找到了解决问题的方法.你需要设置:
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>
@H_301_6@ @H_301_6@ 原文链接:https://www.f2er.com/android/313592.html

猜你在找的Android相关文章