|
@@ -0,0 +1,522 @@
|
|
|
+<?xml version="1.0" encoding="utf-8"?>
|
|
|
+<androidx.constraintlayout.widget.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"
|
|
|
+ tools:context=".view.fragments.CreateEventFragment"
|
|
|
+ android:background="@color/AppBackground"
|
|
|
+ android:padding="15dp">
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:id="@+id/constraintLayout"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center_vertical"
|
|
|
+ android:text="Create event"
|
|
|
+ android:textColor="@color/TextColor"
|
|
|
+ android:textSize="16sp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <Button
|
|
|
+ android:id="@+id/btnSave"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="35dp"
|
|
|
+ android:layout_gravity="end"
|
|
|
+ android:background="@drawable/btn_with_big_corner"
|
|
|
+ android:backgroundTint="@color/MainColor"
|
|
|
+ android:text="Save"
|
|
|
+ android:textColor="@color/TextColor"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+
|
|
|
+ <ScrollView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="0dp"
|
|
|
+ android:layout_marginTop="15dp"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toBottomOf="@+id/constraintLayout"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:id="@+id/eventLocationBlock"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:background="@drawable/black_border">
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="100dp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent">
|
|
|
+
|
|
|
+ <RelativeLayout
|
|
|
+ android:id="@+id/relativeLayout2"
|
|
|
+ android:layout_width="100dp"
|
|
|
+ android:layout_height="100dp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent">
|
|
|
+
|
|
|
+ <com.google.android.material.imageview.ShapeableImageView
|
|
|
+ android:id="@+id/shapeableImageView"
|
|
|
+ android:layout_width="100dp"
|
|
|
+ android:layout_height="100dp"
|
|
|
+ app:shapeAppearance="@style/roundedImageViewRounded" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_marginStart="10dp"
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:text="Place"
|
|
|
+ android:textColor="@color/TextColor"
|
|
|
+ android:textSize="16sp" />
|
|
|
+
|
|
|
+ </RelativeLayout>
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/eventLocationBlockText"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:drawablePadding="10dp"
|
|
|
+ android:padding="10dp"
|
|
|
+ android:text=""
|
|
|
+ android:textColor="@color/MainColor"
|
|
|
+ app:drawableRightCompat="@drawable/ic_forward"
|
|
|
+ app:drawableTint="@color/TextColor"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintStart_toEndOf="@+id/relativeLayout2"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:id="@+id/sportBlock"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:background="@drawable/black_border"
|
|
|
+ android:paddingStart="15dp"
|
|
|
+ android:paddingTop="20dp"
|
|
|
+ android:paddingEnd="15dp"
|
|
|
+ android:paddingBottom="20dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/textView7"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="Sport"
|
|
|
+ android:textColor="@color/TextColor"
|
|
|
+ android:textSize="16sp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/sportBlockText"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text=""
|
|
|
+ android:textColor="@color/MainColor"
|
|
|
+ android:textSize="16sp"
|
|
|
+ android:drawablePadding="10dp"
|
|
|
+ app:drawableRightCompat="@drawable/ic_forward"
|
|
|
+ app:drawableTint="@color/TextColor"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:id="@+id/memberLimitsBlock"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:background="@drawable/black_border"
|
|
|
+ android:paddingStart="15dp"
|
|
|
+ android:paddingTop="20dp"
|
|
|
+ android:paddingEnd="15dp"
|
|
|
+ android:paddingBottom="20dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/textView10"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="Member limits"
|
|
|
+ android:textColor="@color/TextColor"
|
|
|
+ android:textSize="16sp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/memberLimitsBlockText"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text=""
|
|
|
+ android:textColor="@color/MainColor"
|
|
|
+ android:textSize="16sp"
|
|
|
+ android:drawablePadding="10dp"
|
|
|
+ app:drawableRightCompat="@drawable/ic_forward"
|
|
|
+ app:drawableTint="@color/TextColor"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:id="@+id/dayBlock"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:background="@drawable/black_border"
|
|
|
+ android:paddingStart="15dp"
|
|
|
+ android:paddingTop="20dp"
|
|
|
+ android:paddingEnd="15dp"
|
|
|
+ android:paddingBottom="20dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="Day"
|
|
|
+ android:textColor="@color/TextColor"
|
|
|
+ android:textSize="16sp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/dayBlockText"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:drawablePadding="10dp"
|
|
|
+ android:text=""
|
|
|
+ android:textColor="@color/MainColor"
|
|
|
+ android:textSize="16sp"
|
|
|
+ app:drawableRightCompat="@drawable/ic_forward"
|
|
|
+ app:drawableTint="@color/TextColor"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:id="@+id/timeBlock"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:background="@drawable/black_border"
|
|
|
+ android:paddingStart="15dp"
|
|
|
+ android:paddingTop="20dp"
|
|
|
+ android:paddingEnd="15dp"
|
|
|
+ android:paddingBottom="20dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/textView11"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="Time"
|
|
|
+ android:textColor="@color/TextColor"
|
|
|
+ android:textSize="16sp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/timeBlockText"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:drawablePadding="10dp"
|
|
|
+ android:text=""
|
|
|
+ android:textColor="@color/MainColor"
|
|
|
+ android:textSize="16sp"
|
|
|
+ app:drawableRightCompat="@drawable/ic_forward"
|
|
|
+ app:drawableTint="@color/TextColor"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:id="@+id/publicBlock"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:background="@drawable/black_border"
|
|
|
+ android:paddingStart="15dp"
|
|
|
+ android:paddingTop="20dp"
|
|
|
+ android:paddingEnd="15dp"
|
|
|
+ android:paddingBottom="20dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="Public"
|
|
|
+ android:textColor="@color/TextColor"
|
|
|
+ android:textSize="16sp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <androidx.appcompat.widget.SwitchCompat
|
|
|
+ android:id="@+id/publicBlockSwitcher"
|
|
|
+ style="@style/SwitchCompatStyle"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="25dp"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:id="@+id/endRegistrationBlock"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:background="@drawable/black_border"
|
|
|
+ android:paddingStart="15dp"
|
|
|
+ android:paddingTop="20dp"
|
|
|
+ android:paddingEnd="15dp"
|
|
|
+ android:paddingBottom="20dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="End registration"
|
|
|
+ android:textColor="@color/TextColor"
|
|
|
+ android:textSize="16sp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/endRegistrationBlockText"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text=""
|
|
|
+ android:textColor="@color/MainColor"
|
|
|
+ android:textSize="16sp"
|
|
|
+ android:drawablePadding="10dp"
|
|
|
+ app:drawableRightCompat="@drawable/ic_forward"
|
|
|
+ app:drawableTint="@color/TextColor"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"/>
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:id="@+id/levelBlock"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:background="@drawable/black_border"
|
|
|
+ android:paddingStart="15dp"
|
|
|
+ android:paddingTop="20dp"
|
|
|
+ android:paddingEnd="15dp"
|
|
|
+ android:paddingBottom="20dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="Level"
|
|
|
+ android:textColor="@color/TextColor"
|
|
|
+ android:textSize="16sp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/levelBlockText"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text=""
|
|
|
+ android:textColor="@color/MainColor"
|
|
|
+ android:textSize="16sp"
|
|
|
+ android:drawablePadding="10dp"
|
|
|
+ app:drawableRightCompat="@drawable/ic_forward"
|
|
|
+ app:drawableTint="@color/TextColor"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"/>
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+
|
|
|
+ <androidx.constraintlayout.widget.ConstraintLayout
|
|
|
+ android:id="@+id/genderBlock"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="match_parent"
|
|
|
+ android:layout_marginTop="5dp"
|
|
|
+ android:background="@drawable/black_border"
|
|
|
+ android:paddingStart="15dp"
|
|
|
+ android:paddingTop="20dp"
|
|
|
+ android:paddingEnd="15dp"
|
|
|
+ android:paddingBottom="20dp">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="Gender"
|
|
|
+ android:textColor="@color/TextColor"
|
|
|
+ android:textSize="16sp"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintStart_toStartOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/genderBlockText"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text=""
|
|
|
+ android:textColor="@color/MainColor"
|
|
|
+ android:textSize="16sp"
|
|
|
+ android:drawablePadding="10dp"
|
|
|
+ app:drawableRightCompat="@drawable/ic_forward"
|
|
|
+ app:drawableTint="@color/TextColor"
|
|
|
+ app:layout_constraintBottom_toBottomOf="parent"
|
|
|
+ app:layout_constraintEnd_toEndOf="parent"
|
|
|
+ app:layout_constraintTop_toTopOf="parent"/>
|
|
|
+
|
|
|
+ </androidx.constraintlayout.widget.ConstraintLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="25dp"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <ImageView
|
|
|
+ android:layout_width="25dp"
|
|
|
+ android:layout_height="25dp"
|
|
|
+ android:src="@drawable/ic_camera"
|
|
|
+ app:tint="@color/TextColor" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_gravity="center"
|
|
|
+ android:layout_marginStart="10dp"
|
|
|
+ android:text="Add picture"
|
|
|
+ android:textColor="@color/SubTextColor"
|
|
|
+ android:textSize="16sp" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <ImageButton
|
|
|
+ android:id="@+id/btn_get_image_from_galary"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="100dp"
|
|
|
+ android:background="@drawable/black_border"
|
|
|
+ android:backgroundTint="@color/MainColor"
|
|
|
+ android:padding="5dp"
|
|
|
+ android:src="@drawable/ic_galary"
|
|
|
+ app:tint="@color/TextColor" />
|
|
|
+
|
|
|
+ <ImageButton
|
|
|
+ android:id="@+id/btn_get_image_from_camera"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="100dp"
|
|
|
+ android:layout_marginStart="10dp"
|
|
|
+ android:background="@drawable/black_border"
|
|
|
+ android:padding="5dp"
|
|
|
+ android:src="@drawable/ic_camera"
|
|
|
+ app:tint="@color/TextColor" />
|
|
|
+
|
|
|
+ <HorizontalScrollView
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginStart="10dp"
|
|
|
+ android:layout_marginEnd="10dp">
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="horizontal"
|
|
|
+ android:id="@+id/photo_container">
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </HorizontalScrollView>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <EditText
|
|
|
+ android:id="@+id/notes"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginTop="20dp"
|
|
|
+ android:background="@drawable/black_border"
|
|
|
+ android:hint="Notes"
|
|
|
+ android:inputType="textMultiLine"
|
|
|
+ android:minLines="1"
|
|
|
+ android:paddingStart="25dp"
|
|
|
+ android:paddingTop="15dp"
|
|
|
+ android:paddingBottom="20dp"
|
|
|
+ android:paddingEnd="25dp"
|
|
|
+ android:textColor="@color/TextColor"
|
|
|
+ android:textColorHint="@color/SubTextColor"
|
|
|
+ android:layout_marginBottom="10dp"/>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </ScrollView>
|
|
|
+
|
|
|
+</androidx.constraintlayout.widget.ConstraintLayout>
|