线性布局覆盖与背景图像

时间:2017-09-02 20:34:21

标签: android android-drawable

我正在尝试使用(像Photoshop一样的混合模式)在背景图像上叠加线性布局。

我无法解决它。

这是应该用作app背景的渐变图像:

enter image description here

这就是我想要叠加背景图片的方式:

enter image description here

请帮我提供示例代码或指向优秀教程的链接。

1 个答案:

答案 0 :(得分:0)

    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:background="@color/blue_600"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
tools:context=".UI.Activity.HomeActivity">


<ScrollView
   android:layout_width="match_parent"
   android:layout_height="wrap_content">
   <LinearLayout
       android:layout_width="match_parent"
       android:orientation="vertical"
       android:layout_marginTop="10dp"
       android:layout_marginLeft="10dp"
       android:layout_marginRight="10dp"
       android:layout_height="wrap_content">

       <RelativeLayout
           android:layout_width="match_parent"
           android:background="#54e5e5e5"
           android:layout_height="200dp">

       </RelativeLayout>

       <RelativeLayout
           android:layout_width="match_parent"
           android:background="#54e5e5e5"
           android:layout_marginTop="10dp"
           android:layout_height="200dp">

       </RelativeLayout>
   </LinearLayout>

如果您愿意,可以使用滚动视图。