android – 无法使用AppCompat库显示项目

前端之家收集整理的这篇文章主要介绍了android – 无法使用AppCompat库显示项目前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
我在使用AppCompat在ActionBar中显示项目时遇到了一些麻烦.

代码适用于普通操作栏

<menu xmlns:android="http://schemas.android.com/apk/res/android" >

    <item
        android:id="@+id/item1"
        android:showAsAction="always"
        android:title="Se connecter"
        android:visible="true">
    </item>

</menu>

但是使用AppCompat库时,项目不会显示..

我该怎么办 ?

提前致谢 :)

解决方法

showAsAction不在API<的android xml命名空间中. 11尝试类似以下内容
<menu xmlns:android="http://schemas.android.com/apk/res/android" 
  xmlns:yourapp="http://schemas.android.com/apk/res-auto">

<item android:id="@+id/action_refresh"
    android:title="@string/refresh"
    yourapp:showAsAction="always"
    android:icon="@drawable/ic_action_refresh" />
</menu>

请注意,我在菜单属性添加了xmlns:yourapp =“http://schemas.android.com/apk/res-auto,并将showAsAction的命名空间从android更改为yourapp.

更多阅读:http://developer.android.com/guide/topics/ui/actionbar.html

原文链接:https://www.f2er.com/android/314431.html

猜你在找的Android相关文章