在滚动活动上设置图像背景

Nic*_*per 2 android scroll background

我想改变标准生成的背景ScrollingActivity(到图像).
更改背景content_scrolling.xml 会影响我只能放置项目的区域.

我错过了一个简单的方法吗?
(我很惊讶我找不到答案,所以我们走了)

蓝色背景应替换为图像

Aei*_*eer 5

更改android.support.design.widget.CollapsingToolbarLayout的background属性

<android.support.design.widget.CollapsingToolbarLayout
        android:id="@+id/toolbar_layout"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:fitsSystemWindows="true"
        app:contentScrim="?attr/colorPrimary"
        app:layout_scrollFlags="scroll|exitUntilCollapsed"
        android:background="@drawable/backgraound">
Run Code Online (Sandbox Code Playgroud)

或者更改android.support.design.widget.AppBarLayout的background属性

<android.support.design.widget.AppBarLayout
    android:id="@+id/app_bar"
    android:layout_width="match_parent"
    android:layout_height="@dimen/app_bar_height"
    android:fitsSystemWindows="true"
    android:theme="@style/AppTheme.AppBarOverlay"
    android:background="@drawable/backgraound">
Run Code Online (Sandbox Code Playgroud)