Android actionbar左侧小箭头的隐藏

在res/values文件下的styles.xml中添加一个如下的style,不过此时这行代码会出错<item name="android:homeAsUpIndicator">@drawable/hide</item>

要修改AndroidManifest.xml文件的最低版本号为11才行

 

 

<style name="actionbarTheme" parent="android:Theme.Holo.Light">
<item name="android:homeAsUpIndicator">@drawable/hide</item>
</style>

posted on 2015-05-13 14:55  阿岳  阅读(2183)  评论(0编辑  收藏  举报

导航