工具栏/ aapbar图像

时间:2017-01-21 15:58:02

标签: java android xml

我试图将图片放在我的应用栏/工具栏上,但它无法正常工作。我在这个网站上搜索了这个查询,但没有得到满意的答案。

我的minimun SDK版本为15,目标SDK为24.真的很感谢有人回复我的查询

这是我的 menu_main 代码

<?xml version="1.0" encoding="utf-8"?>
    <menu xmlns:android="http://schemas.android.com/apk/res/android"
        xmlns:aap="http://schemas.android.com/apk/res-auto"
        xmlns:app="http://schemas.android.com/tools">
        <item
            android:id="@+id/sett"
            android:title="@string/set"
            android:orderInCategory="100"
            app:showAsAction="never"/>
        <item android:id="@+id/nav"
            android:title="@string/butt"
            android:orderInCategory="200"
            android:icon="@drawable/ic_keyboard_arrow_right_black_24dp"
            aap:showAsAction="always"/>
    </menu>

enter image description here 这是我的aap bar xml文件

<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    xmlns:aap="http://schemas.android.com/apk/res-auto"
    android:background="#C6FF00"
    aap:popupTheme="@style/ThemeOverlay.AppCompat.Dark">
</android.support.v7.widget.Toolbar>

这是我的activity_main.xml

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="com.example.zaina.toolbar.MainActivity">
    <include android:id="@+id/aap_bar" layout="@layout/aap_bar"></include>
    <TextView
        android:layout_below="@id/aap_bar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Hello World!" />
</RelativeLayout>

1 个答案:

答案 0 :(得分:0)

我的问题解决了,因为我确实添加了这些代码行

@Override
public boolean onCreateOptionsMenu(Menu item) {
    getMenuInflater().inflate(R.menu.menu_main, item);
    return true;
}