ActionBar图标不显示我的图标

时间:2015-11-12 09:39:25

标签: android android-menu

这里删除了设置操作栏并插入了我的图标;编译时显示默认下拉设置;我需要将其替换为我的图标,并且应该是可点击的。 enter image description here

enter image description here

enter image description here

2 个答案:

答案 0 :(得分:1)

正如Sanjeet Ajnabee所解释的那样,尝试使用android:showAsAction="always",您应该使用app:showAsAction="always"并将xmlns:app="http://schemas.android.com/apk/res-auto"添加到menu标记中。查看this

答案 1 :(得分:0)

这样可以正常使用

xmlns:app="http://schemas.android.com/apk/res-auto"

xmlns:tools="http://schemas.android.com/tools"

tools:context="com.example.loadimage.MainActivity" >


<item

    android:id="@+id/icon_id"

    android:orderInCategory="100"

    android:icon="@drawable/youricon"

    android:title="@string/action_settings"

    app:showAsAction="always"/>