使用重力设置背景而不调整容器视图在Android中

时间:2018-03-13 14:21:54

标签: java android xml android-layout

如何在不调整视图大小的情况下向视图添加背景,仅显示适合前一空间的图像部分?

示例:

我有以下初始布局:

enter image description here

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout 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:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#8900"
    android:orientation="vertical"
    tools:context="com.tappx.myapplication.MainActivity">


    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:background="#fff"
        android:orientation="vertical">

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="100dp"
            android:layout_gravity="center"
            android:background="#0f0"
            android:gravity="center"
            android:text="HELLO" />

        <TextView
            android:layout_width="wrap_content"
            android:layout_height="100dp"
            android:layout_gravity="center"
            android:background="#f0f"
            android:gravity="center"
            android:text="HELLO" />


    </LinearLayout>


</LinearLayout>

我想将以下图像作为渐变应用于白色背景:

enter image description here

要实现这一点(请注意渐变填充水平并具有底部重力):

:定位: enter image description here

我的问题是将渐变设置为android:background会将容器视图大小扩展为此(丢失红色底部)

enter image description here

还尝试制作没有结果的xml位图:

<?xml version="1.0" encoding="utf-8"?>
<layer-list xmlns:android="http://schemas.android.com/apk/res/android">
    <item>
        <bitmap
            android:gravity="bottom"
            android:src="@drawable/gradient" />
    </item>
</layer-list>

我怎样才能实现它?

1 个答案:

答案 0 :(得分:0)

您正在使用的图像非常长,并且您的容器设置为包装内容,因此它正在扩展以容纳图像。

由于您已经在内部元素上使用固定高度,因此您可以简单地为容器设置固定高度(200dp)并且它可以工作