Teraplex/app/src/main/res/layout/fragment_flur.xml

59 lines
2.0 KiB
XML
Raw Normal View History

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:background="@drawable/background"
android:orientation="vertical"
tools:context=".MainActivity">
2021-05-23 21:03:21 +02:00
<Space
android:layout_width="match_parent"
android:layout_height="wrap_content"
2021-05-23 21:03:21 +02:00
android:layout_marginTop="75dp" />
<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-05-23 21:03:21 +02:00
<LinearLayout
android:id="@+id/layout_list"
android:layout_width="match_parent"
android:layout_height="wrap_content"
2021-05-23 21:03:21 +02:00
android:orientation="vertical"></LinearLayout>
<Button
2021-05-23 21:03:21 +02:00
android:id="@+id/button_add"
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>
<Button
2021-05-23 21:03:21 +02:00
android:id="@+id/button_submit_list"
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>