我使用的是Android设计库组件,我希望在我的ToolBar
和TabLayout
后面有一张图片。图像必须被裁剪并且不适合尺寸。我实际上在android:background="@drawable/AppBarBg"
中将我的图片设置为AppBarLayout
,而我的图片并没有裁剪(当然)。如何裁剪背景图片?
<android.support.design.widget.CoordinatorLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:id="@+id/main_content"
android:layout_width="match_parent"
android:layout_height="match_parent">
<android.support.design.widget.AppBarLayout
android:id="@+id/appbar"
android:layout_width="match_parent"
android:layout_height="100dp"
android:background="@drawable/AppBarBg"
android:scaleType="centerCrop"
android:theme="@style/ThemeOverlay.AppCompat.Dark.ActionBar">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
style="@style/ToolBarStyle"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:minHeight="?attr/actionBarSize"
android:orientation="horizontal"
app:popupTheme="@style/ThemeOverlay.AppCompat.Light" />
<android.support.design.widget.TabLayout
android:id="@+id/tabs"
android:layout_width="match_parent"
android:layout_height="wrap_content"
/>
</android.support.design.widget.AppBarLayout>
<android.support.v4.view.ViewPager
android:id="@+id/viewpager"
android:layout_width="match_parent"
android:layout_height="match_parent"
app:layout_behavior="@string/appbar_scrolling_view_behavior" />
</android.support.design.widget.CoordinatorLayout>
答案 0 :(得分:0)
AppBarLayout基本上只是一个LinearLayout,因此设置背景会拉伸它......
我认为您正在寻找CollapsingToolbarLayout ...... 您的布局结构应如下所示:
AppBarLayout CollapsingToolbarLayout ImageView(这是你想要centerCrop的背景) 工具栏 TabLayout 等...