在那里,我尝试使用Material Material App Bar / ActionBar和Style It。
我是菜鸟..我尝试用this tutorial
做我做了所有步骤......但是最后一步,我无法在行动栏中添加图标。
我使用android studio最新版本,测试SDK是17
<item
android:id="@+id/action_textsms"
android:orderInCategory="200"
android:title="textSMS"
android:icon="@drawable/ic_action_textsms"
app:showAsAction="ifRoom"
></item>
</menu>
但是这个图标没有出现在emactor上的android studio(android4.2.2)
剂量我定义action_textsms正确吗?我错了什么?
答案 0 :(得分:0)
在styles.xml中查看它:
<resources>
<!-- Base application theme. -->
<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
<item name="colorPrimary">@color/primary</item>
<item name="colorPrimaryDark">@color/primary_dark</item>
<!-- Customize your theme here. -->
</style>
</resources>
并在AndroidManifest.xml中:
<application
...
android:theme="@style/AppTheme" >
...
答案 1 :(得分:0)
将app:showAsAction="ifRoom"
更改为app:showAsAction="always"