当前位置: 代码迷 >> Android >> Android actionbar左首小箭头的隐藏
  详细解决方案

Android actionbar左首小箭头的隐藏

热度:90   发布时间:2016-04-28 01:01:37.0
Android actionbar左侧小箭头的隐藏

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

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

<style name="actionbarTheme" parent="android:Theme.Holo.Light">

<item name="android:homeAsUpIndicator">@drawable/hide</item>
</style>

  相关解决方案