Advertisement
Guest User

Untitled

a guest
Jul 10th, 2020
35
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 1.64 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout
  3.    xmlns:android="http://schemas.android.com/apk/res/android"
  4.    xmlns:app="http://schemas.android.com/apk/res-auto"
  5.    xmlns:tools="http://schemas.android.com/tools"
  6.    android:layout_width="match_parent"
  7.    android:background="@color/colorAccent"
  8.    android:layout_height="match_parent">
  9.  
  10.     <TextView
  11.        android:id="@+id/textView"
  12.        android:layout_width="wrap_content"
  13.        android:layout_height="wrap_content"
  14.        android:text="TextView"
  15.        app:layout_constraintEnd_toEndOf="parent"
  16.        app:layout_constraintHorizontal_bias="0.5"
  17.        app:layout_constraintStart_toStartOf="parent"
  18.        app:layout_constraintTop_toTopOf="parent" />
  19.  
  20.     <TextView
  21.        android:id="@+id/textView2"
  22.        android:layout_width="wrap_content"
  23.        android:layout_height="wrap_content"
  24.        android:layout_marginTop="24dp"
  25.        android:text="TextView"
  26.        app:layout_constraintEnd_toStartOf="@+id/textView"
  27.        app:layout_constraintHorizontal_bias="0.5"
  28.        app:layout_constraintStart_toStartOf="parent"
  29.        app:layout_constraintTop_toBottomOf="@+id/textView" />
  30.  
  31.     <TextView
  32.        android:id="@+id/textView3"
  33.        android:layout_width="wrap_content"
  34.        android:layout_height="wrap_content"
  35.        android:layout_marginTop="32dp"
  36.        android:text="TextView"
  37.        app:layout_constraintEnd_toEndOf="parent"
  38.        app:layout_constraintStart_toEndOf="@+id/textView"
  39.        app:layout_constraintTop_toBottomOf="@+id/textView2" />
  40. </androidx.constraintlayout.widget.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement