Advertisement
TiyasAria

update_fragment

Jan 7th, 2022
238
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
XML 2.37 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  3.    xmlns:tools="http://schemas.android.com/tools"
  4.    android:layout_width="match_parent"
  5.    android:layout_height="match_parent"
  6.    xmlns:app="http://schemas.android.com/apk/res-auto"
  7.    android:padding="@dimen/_16dp"
  8.    tools:context=".fragments.update.UpdateFragment">
  9.  
  10.     <EditText
  11.        android:id="@+id/et_uptitle"
  12.        android:layout_width="0dp"
  13.        android:layout_height="@dimen/_60dp"
  14.        android:background="@drawable/costum_input"
  15.        android:ems="10"
  16.        android:inputType="textPersonName"
  17.        android:hint="@string/txt_title"
  18.        android:paddingStart="@dimen/_24dp"
  19.        android:paddingEnd="@dimen/_24dp"
  20.        app:layout_constraintEnd_toEndOf="parent"
  21.        app:layout_constraintHorizontal_bias="0.5"
  22.        app:layout_constraintStart_toStartOf="parent"
  23.        app:layout_constraintTop_toTopOf="parent" />
  24.  
  25.     <Spinner
  26.        android:id="@+id/sp_update"
  27.        android:layout_width="0dp"
  28.        android:layout_height="@dimen/_60dp"
  29.        android:layout_marginTop="@dimen/_8dp"
  30.        android:entries="@array/priorities"
  31.        app:layout_constraintEnd_toEndOf="parent"
  32.        android:paddingStart="@dimen/_20dp"
  33.        android:paddingEnd="@dimen/_20dp"
  34.        app:layout_constraintHorizontal_bias="0.5"
  35.        app:layout_constraintStart_toStartOf="parent"
  36.        app:layout_constraintTop_toBottomOf="@+id/et_uptitle" />
  37.  
  38.     <EditText
  39.        android:id="@+id/et_desc_update"
  40.        android:layout_width="0dp"
  41.        android:layout_height="0dp"
  42.        android:layout_marginTop="@dimen/_8dp"
  43.        android:background="@drawable/costum_input"
  44.        android:ems="10"
  45.        android:gravity="start|top"
  46.        android:inputType="textMultiLine"
  47.        android:hint="@string/txt_dsc"
  48.        android:paddingStart="@dimen/_24dp"
  49.        android:paddingEnd="@dimen/_24dp"
  50.        android:paddingTop="@dimen/_16dp"
  51.        app:layout_constraintEnd_toEndOf="parent"
  52.        app:layout_constraintHorizontal_bias="0.5"
  53.        app:layout_constraintStart_toStartOf="parent"
  54.        app:layout_constraintBottom_toBottomOf="parent"
  55.        app:layout_constraintTop_toBottomOf="@+id/sp_update" />
  56.  
  57.  
  58. </androidx.constraintlayout.widget.ConstraintLayout>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement