图标不会出现在Android工作室的ActionBar中

时间:2015-06-29 02:28:30

标签: java android android-studio

在那里,我尝试使用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正确吗?我错了什么?

2 个答案:

答案 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"