使用约束布局时设置背景

时间:2018-06-30 05:44:38

标签: android background android-constraintlayout

我将约束布局用作父级,并使用约束添加了多个子级。水平有三个视图,我只需要为两个视图应用圆角背景,这是以前通过线性布局实现的。但是在约束布局的帮助下,我无法实现这一目标。

我该如何实现?

enter image description here

2 个答案:

答案 0 :(得分:4)

ConstraintLayout最近引入了constrainthelper的概念,该概念可用于对一组视图执行操作。 “组”是该类的子类,用于切换多个视图的可见性。

一个可以同时更改多个视图背景的constrainthelper尚未成为稳定版本的一部分,但很快就会实现。

在此之前,您可以使用View类实现一个背景,如以下示例所示,其中3个textview具有相同的背景:

<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout 
  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="#AAA">

  <View
    android:id="@+id/background"
    android:layout_width="0dp"
    android:layout_height="0dp"
    android:background="#FFF"
    app:layout_constraintBottom_toBottomOf="@+id/textView3"
    app:layout_constraintEnd_toEndOf="@+id/textView1"
    app:layout_constraintStart_toStartOf="@+id/textView1"
    app:layout_constraintTop_toTopOf="@+id/textView1" />

  <TextView
    android:id="@+id/textView1"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_margin="8dp"
    android:padding="8dp"
    app:layout_constraintEnd_toEndOf="parent"
    app:layout_constraintStart_toStartOf="parent"
    app:layout_constraintTop_toTopOf="parent"
    tools:text="TextView" />

  <TextView
    android:id="@+id/textView2"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:padding="8dp"
    app:layout_constraintEnd_toEndOf="@+id/textView1"
    app:layout_constraintStart_toStartOf="@+id/textView1"
    app:layout_constraintTop_toBottomOf="@+id/textView1"
    tools:text="TextView" />

  <TextView
    android:id="@+id/textView3"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:padding="8dp"
    app:layout_constraintEnd_toEndOf="@+id/textView1"
    app:layout_constraintStart_toStartOf="@+id/textView1"
    app:layout_constraintTop_toBottomOf="@+id/textView2"
    tools:text="TextView" />
</android.support.constraint.ConstraintLayout>

编辑:A nice blog on what to expect from ConstraintLayout 2.0

答案 1 :(得分:0)

您可以按照以下步骤使用简单的图像视图进行操作:

  • 在文本视图之前放置图像视图

  • 设置图像视图的开始,顶部约束以匹配第一个文本视图

  • 设置图像视图的 end&bottom 约束以匹配最后的文本视图

    这会将imageview拉伸到由第一个视图的左上角和最后一个视图的右下角定义的矩形。

    请注意,ImageView必须位于文本视图之前:

         <!--Background Image View-->
      <ImageView
            android:layout_width="wrap_content"
            android:layout_height="0dp"
            android:background="@drawable/lake"
            app:layout_goneMarginRight="@dimen/activity_vertical_margin"
    
            <!--Top_LEFT by first view-->
            app:layout_constraintStart_toStartOf="heding"
            app:layout_constraintTop_toTopOf="@+id/heding"
    
            <!--BOTTOM RIGHT by last view-->
            app:layout_constraintEnd_toEndOf="@+id/info"
            app:layout_constraintBottom_toBottomOf="@+id/info"
            />
    
            <!--first view-->
        <TextView
            android:id="@+id/heding"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="8dp"
            android:text="Lake Tahoe "
            android:textSize="17sp"
            android:textStyle="bold"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintHorizontal_bias="0.05"
            app:layout_constraintStart_toEndOf="@+id/thumb"
            app:layout_constraintTop_toTopOf="@+id/thumb"
            tools:layout_constraintBottom_creator="1"
            android:textColor="#FFF"
            tools:layout_constraintTop_creator="1" />
    
            <!--last view-->
    
        <TextView
            android:id="@+id/info"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:layout_margin="8dp"
            android:text="LakeTahoe is a large freshwater lake in Sierra Naveda"
            android:textSize="15sp"
            android:textColor="#FFF"
            app:layout_constraintBottom_toBottomOf="@+id/thumb"
            app:layout_constraintEnd_toEndOf="parent"
            app:layout_constraintHorizontal_bias="0.05"
            app:layout_constraintStart_toEndOf="@+id/thumb"
            app:layout_constraintTop_toBottomOf="@+id/heding"
            app:layout_constraintVertical_bias="1.0"
            tools:layout_constraintLeft_creator="1"
            tools:layout_constraintRight_creator="1"
            tools:layout_constraintTop_creator="1" />
    

结果:

enter image description here