play365sdk login.xml编译问题解决

来源:互联网 发布:淘宝代做毕业设计真假 编辑:程序博客网 时间:2024/05/01 15:19
<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context="com.example.iceyousdk.LoginActivity" >


    <item
        android:id="@+id/action_settings"
        android:orderInCategory="100"
        android:title="@string/action_settings"
        app:showAsAction="never"/>     

</menu>

 app:showAsAction="never"/  编译器无法识别,android sdk 版本level是19

改为

<menu xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context="com.example.iceyousdk.LoginActivity" >


    <item
        android:id="@+id/action_settings"
        android:orderInCategory="100"
        android:title="@string/action_settings"
        android:showAsAction="never"/>


</menu>

即可运行通过

0 0
原创粉丝点击