我想在操作栏中有一个复选标记图标。 我正在使用的代码是:
在menu_actionbar.xml中:
<?xml version="1.0" encoding="utf-8"?>
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<item
android:title=""
android:id="@+id/action_check"
android:icon="@drawable/ic_done_white_48dp"
android:orderInCategory="100"
app:showAsAction="always"/>
</menu>
在活动中:
@Override
public boolean onCreateOptionsMenu(Menu menu) {
MenuInflater inflater = getMenuInflater();
inflater.inflate(R.menu.menu_actionbar, menu);
return true;
}
这是它应该是什么样子,以及它是如何看待一段时间直到最近的一些支持库更新(不确定哪一个):correct
以下是设备现在的样子:incorrect