2021-03-04 21:18:38 +01:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
2021-05-23 21:03:21 +02:00
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
2021-03-04 21:18:38 +01:00
|
|
|
xmlns:tools="http://schemas.android.com/tools"
|
2021-05-24 16:49:02 +02:00
|
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
2021-03-04 21:18:38 +01:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2021-05-23 21:03:21 +02:00
|
|
|
android:orientation="vertical"
|
2021-06-03 23:34:38 +02:00
|
|
|
android:clickable="true"
|
2021-05-23 21:03:21 +02:00
|
|
|
tools:context=".MainActivity">
|
2021-05-21 22:02:20 +02:00
|
|
|
|
2021-06-02 21:12:07 +02:00
|
|
|
<ImageView
|
|
|
|
android:id="@+id/Background"
|
2021-06-03 23:34:38 +02:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2021-06-02 21:12:07 +02:00
|
|
|
android:scaleType="centerCrop"
|
|
|
|
android:src="@drawable/background"
|
|
|
|
app:layout_constraintBottom_toBottomOf="parent"
|
|
|
|
app:layout_constraintEnd_toEndOf="parent"
|
|
|
|
app:layout_constraintHorizontal_bias="0.5"
|
|
|
|
app:layout_constraintStart_toStartOf="parent"
|
|
|
|
app:layout_constraintTop_toTopOf="parent"
|
|
|
|
app:layout_constraintVertical_bias="0.0" />
|
2021-04-16 21:41:45 +02:00
|
|
|
|
2021-05-23 21:03:21 +02:00
|
|
|
<Space
|
|
|
|
android:layout_width="match_parent"
|
2021-04-16 21:41:45 +02:00
|
|
|
android:layout_height="wrap_content"
|
2021-05-23 21:03:21 +02:00
|
|
|
android:layout_marginTop="75dp" />
|
2021-04-16 21:41:45 +02:00
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2021-05-23 21:03:21 +02:00
|
|
|
android:layout_margin="15dp"
|
|
|
|
android:text="Cricketer List"
|
|
|
|
android:textColor="@color/white"
|
|
|
|
android:textSize="15sp"></TextView>
|
2021-04-16 21:41:45 +02:00
|
|
|
|
2021-05-23 21:03:21 +02:00
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/layout_list"
|
|
|
|
android:layout_width="match_parent"
|
2021-04-16 21:41:45 +02:00
|
|
|
android:layout_height="wrap_content"
|
2021-05-23 21:03:21 +02:00
|
|
|
android:orientation="vertical"></LinearLayout>
|
2021-04-16 21:41:45 +02:00
|
|
|
|
|
|
|
<Button
|
2021-05-23 21:03:21 +02:00
|
|
|
android:id="@+id/button_add"
|
2021-04-16 21:41:45 +02:00
|
|
|
android:layout_width="wrap_content"
|
2021-05-23 21:03:21 +02:00
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_marginLeft="15dp"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:background="@drawable/ic_launcher_background"
|
|
|
|
android:drawableRight="@drawable/add_black_24dp"
|
|
|
|
android:paddingLeft="10dp"
|
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:text="Add"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
android:textColor="@color/white"></Button>
|
2021-04-16 21:41:45 +02:00
|
|
|
|
|
|
|
<Button
|
2021-05-23 21:03:21 +02:00
|
|
|
android:id="@+id/button_submit_list"
|
2021-04-16 21:41:45 +02:00
|
|
|
android:layout_width="match_parent"
|
2021-05-23 21:03:21 +02:00
|
|
|
android:layout_height="40dp"
|
|
|
|
android:layout_marginLeft="15dp"
|
|
|
|
android:layout_marginTop="10dp"
|
|
|
|
android:layout_marginRight="15dp"
|
|
|
|
android:background="@drawable/ic_launcher_background"
|
|
|
|
android:paddingLeft="10dp"
|
|
|
|
android:paddingRight="10dp"
|
|
|
|
android:text="Submit List"
|
|
|
|
android:textAllCaps="false"
|
|
|
|
android:textColor="@color/white"></Button>
|
|
|
|
|
|
|
|
</LinearLayout>
|