diff --git a/bondoman/app/src/main/res/layout/activity_login_page.xml b/bondoman/app/src/main/res/layout/activity_login_page.xml index 12cea6b3ec7ca3ffde09d758180820d7fa30bf08..d770d5cf01b92566658cfc2b84f5787a7440a21a 100644 --- a/bondoman/app/src/main/res/layout/activity_login_page.xml +++ b/bondoman/app/src/main/res/layout/activity_login_page.xml @@ -18,6 +18,7 @@ android:text="MLEBU" android:textSize="32dp" android:textStyle="bold" + android:textColor="@color/secondary" app:layout_constraintEnd_toEndOf="parent" app:layout_constraintStart_toStartOf="parent" app:layout_constraintTop_toTopOf="parent" /> diff --git a/bondoman/app/src/main/res/layout/activity_splash_screen.xml b/bondoman/app/src/main/res/layout/activity_splash_screen.xml index 0ba41ed63a36280b3faabef1128649e5812f90c3..510a214d9b5229843a2029ad2f63806f86b0af42 100644 --- a/bondoman/app/src/main/res/layout/activity_splash_screen.xml +++ b/bondoman/app/src/main/res/layout/activity_splash_screen.xml @@ -21,6 +21,7 @@ android:layout_below="@id/logoSplashScreen" android:layout_centerHorizontal="true" android:fontFamily="@font/font_parisienne" + android:textColor="@color/secondary" android:text="Bondoman" android:textSize="40dp" /> </RelativeLayout> \ No newline at end of file diff --git a/bondoman/app/src/main/res/layout/fragment_settings_page.xml b/bondoman/app/src/main/res/layout/fragment_settings_page.xml index bd0d7289a86bc67e9a1984c346ff0d1685443054..5e766cc0119a63747dd410d094e231a8dfc849be 100644 --- a/bondoman/app/src/main/res/layout/fragment_settings_page.xml +++ b/bondoman/app/src/main/res/layout/fragment_settings_page.xml @@ -1,5 +1,6 @@ <?xml version="1.0" encoding="utf-8"?> -<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" +<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" @@ -12,59 +13,71 @@ android:id="@+id/txt1_settings" android:layout_width="wrap_content" android:layout_height="wrap_content" + android:layout_centerHorizontal="true" android:layout_gravity="center_horizontal" - android:layout_margin="50dp" + android:layout_marginTop="120dp" android:fontFamily="@font/font_poppins" android:text="Penatanan" - android:textColor="@color/secondary" android:textAllCaps="true" + android:textColor="@color/secondary" android:textSize="32dp" android:textStyle="bold" - android:layout_centerHorizontal="true" - /> + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toTopOf="parent" /> <Button android:id="@+id/save_button" android:layout_width="match_parent" android:layout_height="wrap_content" - android:text="Simpen Daftar Tumbas" - android:fontFamily="@font/font_poppins" - android:textSize="16dp" - android:textColor="@color/white" - android:textAllCaps="false" + android:layout_below="@id/txt1_settings" android:layout_marginStart="30dp" + android:layout_marginTop="20dp" android:layout_marginEnd="30dp" android:background="@drawable/custom_button" - android:layout_below="@id/txt1_settings"/> + android:fontFamily="@font/font_poppins" + android:text="Simpen Daftar Tumbas" + android:textAllCaps="false" + android:textColor="@color/white" + android:textSize="16dp" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/txt1_settings" /> <Button android:id="@+id/send_button" android:layout_width="match_parent" android:layout_height="wrap_content" - android:text="Kirim Daftar Tumbas" - android:fontFamily="@font/font_poppins" - android:textSize="16dp" - android:textColor="@color/white" - android:textAllCaps="false" + android:layout_below="@id/save_button" android:layout_marginStart="30dp" - android:layout_marginEnd="30dp" android:layout_marginTop="20dp" + android:layout_marginEnd="30dp" android:background="@drawable/custom_button" - android:layout_below="@id/save_button"/> + android:fontFamily="@font/font_poppins" + android:text="Kirim Daftar Tumbas" + android:textAllCaps="false" + android:textColor="@color/white" + android:textSize="16dp" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/save_button" /> <Button android:id="@+id/logout_button" android:layout_width="match_parent" android:layout_height="wrap_content" - android:text="Metu" - android:fontFamily="@font/font_poppins" - android:textSize="16dp" - android:textColor="@color/white" - android:textAllCaps="false" + android:layout_below="@id/send_button" android:layout_marginStart="30dp" - android:layout_marginEnd="30dp" android:layout_marginTop="20dp" + android:layout_marginEnd="30dp" android:background="@drawable/logout_button" - android:layout_below="@id/send_button"/> + android:fontFamily="@font/font_poppins" + android:text="Metu" + android:textAllCaps="false" + android:textColor="@color/white" + android:textSize="16dp" + app:layout_constraintEnd_toEndOf="parent" + app:layout_constraintStart_toStartOf="parent" + app:layout_constraintTop_toBottomOf="@+id/send_button" /> -</RelativeLayout> \ No newline at end of file +</androidx.constraintlayout.widget.ConstraintLayout> \ No newline at end of file