Initial Push

This commit is contained in:
Deniz Düzgören
2019-04-29 19:27:51 +02:00
commit a45e5cdfa0
148 changed files with 6890 additions and 0 deletions
+110
View File
@@ -0,0 +1,110 @@
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<androidx.core.widget.NestedScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="8dp">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingStart="24dp"
android:paddingEnd="24dp"
android:paddingBottom="24dp"
android:paddingTop="8dp"
android:orientation="vertical">
<TextView
android:id="@+id/dating_txt"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:textColor="?attr/colorText"
android:text="@string/havefun"/>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<EditText
android:id="@+id/dating_txt1"
android:layout_width="0px"
android:layout_weight="7"
android:backgroundTint="?attr/colorText"
android:layout_height="wrap_content"
android:hint="@string/boy"
android:inputType="textNoSuggestions"
android:textColorHint="?attr/colorHint"
android:textColor="?attr/colorText"/>
<CheckBox
android:id="@+id/cb1"
android:layout_width="0px"
android:layout_weight="3"
android:layout_height="wrap_content"
android:textColor="?attr/colorText"
android:text="Shuffle"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<EditText
android:id="@+id/dating_txt2"
android:layout_width="0px"
android:layout_weight="7"
android:backgroundTint="?attr/colorText"
android:layout_height="wrap_content"
android:hint="@string/girl"
android:inputType="textNoSuggestions"
android:textColorHint="?attr/colorHint"
android:textColor="?attr/colorText"/>
<CheckBox
android:id="@+id/cb2"
android:layout_width="0px"
android:layout_weight="3"
android:layout_height="wrap_content"
android:textColor="?attr/colorText"
android:text="Shuffle"/>
</LinearLayout>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<Button
android:id="@+id/dating_btn"
android:layout_width="0px"
android:layout_weight="5"
android:layout_height="wrap_content"
android:backgroundTint="@color/datingPink"
android:text="@string/calculate"
android:textColor="@color/white"
android:layout_gravity="start|center_vertical"/>
<TextView
android:id="@+id/dating_txtp"
android:layout_width="0px"
android:layout_weight="5"
android:layout_height="wrap_content"
android:textSize="20sp"
android:textColor="?attr/colorText"
android:layout_marginStart="24dp"
android:layout_gravity="end|center_vertical"/>
</LinearLayout>
</LinearLayout>
</androidx.core.widget.NestedScrollView>
</LinearLayout>