Make it beautiful

This commit is contained in:
neslihanturan 2018-05-19 22:21:59 +03:00 committed by maskara
parent 6f731ce23e
commit 2cedf44124
7 changed files with 68 additions and 13 deletions

View file

@ -3,9 +3,8 @@
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:weightSum="5"
android:weightSum="6"
android:orientation="vertical"
android:background="@color/main_background_light"
android:gravity="center_horizontal"
>
@ -21,8 +20,10 @@
android:layout_width="match_parent"
android:textColor="@android:color/black"
android:layout_height="0dp"
android:layout_weight="0.7"
android:layout_weight="1.1"
android:textAlignment="center"
android:textSize="32dp"
android:gravity="center_vertical"
android:text="testing1"
/>
<TextView
@ -31,6 +32,9 @@
android:layout_height="0dp"
android:layout_weight="0.7"
android:textAlignment="center"
android:textSize="24dp"
android:layout_marginBottom="15dp"
android:gravity="center_vertical"
android:text="testing2"
/>
@ -46,15 +50,29 @@
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="@string/yes"/>
android:background="@android:color/transparent"
android:text="@string/yes"
android:textSize="20dp"
android:textColor="?attr/colorPrimaryDark"
/>
<Button
android:id="@+id/noButton"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:background="@android:color/transparent"
android:layout_weight="1"
android:text="@string/no"/>
android:text="@string/no"
android:textSize="20dp"
android:textColor="?attr/colorPrimaryDark"
/>
</LinearLayout>
<View
android:layout_width="wrap_content"
android:layout_height="0dp"
android:layout_weight="0.6"
android:background="?attr/colorPrimaryDark"
></View>
</LinearLayout>