在Android中的工具栏背景中添加图片

时间:2016-11-07 21:20:16

标签: android android-actionbar

我试图做这样的事情:

我当前的工具栏代码:

QSqlTableModel *model = new QSqlTableModel(parentObject, database);

我的图片没有覆盖整个屏幕

1 个答案:

答案 0 :(得分:1)

而不是添加新的图像视图,设置工具栏的背景已经解决了我的问题。

<android.support.v7.widget.Toolbar xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:id="@+id/toolbar"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:background="@drawable/explore_morning"
    android:fitsSystemWindows="true"
    android:minHeight="64dp"
    app:theme="@style/MyTheme.ActionBarStyle">


</android.support.v7.widget.Toolbar>