Advertisement
medajibka

Untitled

Apr 16th, 2023
372
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 3.20 KB | None | 0 0
  1. <!-- Тестовая система ругается на размер XML и не даёт его вставит -->
  2.  
  3. <?xml version="1.0" encoding="utf-8"?>
  4. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  5.    xmlns:app="http://schemas.android.com/apk/res-auto"
  6.    xmlns:tools="http://schemas.android.com/tools"
  7.    android:layout_width="match_parent"
  8.    android:layout_height="match_parent"
  9.    android:background="#FFAA00"
  10.    tools:context=".MainActivity">
  11.  
  12.     <shape
  13.        android:id="@+id/shape"
  14.        android:layout_width="160dp"
  15.        android:layout_height="164dp"
  16.        android:shape="rectangle"
  17.        app:layout_constraintBottom_toBottomOf="parent"
  18.        app:layout_constraintEnd_toEndOf="parent"
  19.        app:layout_constraintHorizontal_bias="0.498"
  20.        app:layout_constraintStart_toStartOf="parent"
  21.        app:layout_constraintTop_toTopOf="parent"
  22.        app:layout_constraintVertical_bias="0.481">
  23.  
  24.         <size
  25.            android:height="100dp"
  26.            android:width="100dp"/>
  27.  
  28.         <solid android:color="#00AA00" />
  29.     </shape>
  30.  
  31.     <TextView
  32.        android:id="@+id/textView2"
  33.        android:layout_width="wrap_content"
  34.        android:layout_height="wrap_content"
  35.        android:layout_marginStart="175dp"
  36.        android:layout_marginEnd="178dp"
  37.        android:layout_marginBottom="248dp"
  38.        android:text="Name"
  39.        android:textColor="#FFFFFF"
  40.        app:layout_constraintBottom_toBottomOf="parent"
  41.        app:layout_constraintEnd_toEndOf="parent"
  42.        app:layout_constraintHorizontal_bias="0.571"
  43.        app:layout_constraintStart_toStartOf="parent"
  44.        app:layout_constraintTop_toBottomOf="@+id/shape"
  45.        app:layout_constraintVertical_bias="0.296" />
  46.  
  47.     <TextView
  48.        android:id="@+id/textView3"
  49.        android:layout_width="wrap_content"
  50.        android:layout_height="wrap_content"
  51.        android:layout_marginStart="186dp"
  52.        android:layout_marginEnd="186dp"
  53.        android:layout_marginBottom="236dp"
  54.        android:text="Surname"
  55.        android:textColor="#FFFFFF"
  56.        android:textSize="10sp"
  57.        app:layout_constraintBottom_toBottomOf="parent"
  58.        app:layout_constraintEnd_toEndOf="parent"
  59.        app:layout_constraintHorizontal_bias="0.0"
  60.        app:layout_constraintStart_toStartOf="parent"
  61.        app:layout_constraintTop_toBottomOf="@+id/textView2"
  62.        app:layout_constraintVertical_bias="0.0" />
  63.  
  64.     <Button
  65.        android:id="@+id/button"
  66.        style="@style/Widget.AppCompat.Button"
  67.        android:layout_width="wrap_content"
  68.        android:layout_height="wrap_content"
  69.        android:layout_marginStart="160dp"
  70.        android:layout_marginEnd="160dp"
  71.        android:layout_marginBottom="151dp"
  72.        android:text="Next"
  73.        app:layout_constraintBottom_toBottomOf="parent"
  74.        app:layout_constraintEnd_toEndOf="parent"
  75.        app:layout_constraintHorizontal_bias="0.0"
  76.        app:layout_constraintStart_toStartOf="parent"
  77.        app:layout_constraintTop_toBottomOf="@+id/textView3"
  78.        app:layout_constraintVertical_bias="1.0" />
  79.  
  80. </androidx.constraintlayout.widget.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement