143 lines
5.3 KiB
XML
143 lines
5.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<androidx.drawerlayout.widget.DrawerLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tl="http://schemas.android.com/apk/res-auto"
|
|
xmlns:tools="http://schemas.android.com/tools"
|
|
android:id="@+id/drawer"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/theme_white"
|
|
android:orientation="vertical">
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:background="@color/theme_white"
|
|
android:orientation="vertical">
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="56dp"
|
|
android:background="@color/theme_pink">
|
|
|
|
<ImageView
|
|
android:id="@+id/ivMenu"
|
|
android:layout_width="24dp"
|
|
android:layout_height="24dp"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginStart="16dp"
|
|
android:src="@drawable/ic_menu" />
|
|
|
|
<TextView
|
|
android:id="@+id/tvTitle"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:layout_marginStart="52dp"
|
|
android:fontFamily="@font/fredoka"
|
|
android:text="@string/app_name"
|
|
android:textColor="@color/theme_white"
|
|
android:textSize="24sp" />
|
|
</RelativeLayout>
|
|
|
|
<com.flyco.tablayout.SlidingTabLayout
|
|
android:id="@+id/stl_tab"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="48dp"
|
|
android:background="@color/theme_pink"
|
|
app:tl_indicator_color="@color/white"
|
|
app:tl_indicator_corner_radius="1.5dp"
|
|
app:tl_indicator_height="3dp"
|
|
app:tl_indicator_width="20dp"
|
|
app:tl_textBold="BOTH"
|
|
app:tl_textSelectColor="@color/theme_white"
|
|
app:tl_textUnselectColor="@color/theme_gray"
|
|
app:tl_textsize="18sp" />
|
|
|
|
<androidx.viewpager.widget.ViewPager
|
|
android:id="@+id/viewPager"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent" />
|
|
</LinearLayout>
|
|
|
|
|
|
<LinearLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent"
|
|
android:layout_gravity="start"
|
|
android:background="@color/theme_pink"
|
|
android:orientation="vertical"
|
|
android:visibility="visible">
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rlRate"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="52dp"
|
|
android:layout_marginTop="24dp"
|
|
android:paddingHorizontal="16dp">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:fontFamily="@font/fredoka"
|
|
android:gravity="center"
|
|
android:text="@string/rate_us"
|
|
android:textColor="@color/white"
|
|
android:textSize="16sp" />
|
|
</RelativeLayout>
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rlShare"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="52dp"
|
|
android:paddingHorizontal="16dp">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:fontFamily="@font/fredoka"
|
|
android:gravity="center"
|
|
android:text="@string/share_app"
|
|
android:textColor="@color/white"
|
|
android:textSize="16sp" />
|
|
</RelativeLayout>
|
|
|
|
<RelativeLayout
|
|
android:id="@+id/rlPrivacy"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="52dp"
|
|
android:paddingHorizontal="16dp">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:fontFamily="@font/fredoka"
|
|
android:gravity="center"
|
|
android:text="@string/privacy_policy"
|
|
android:textColor="@color/white"
|
|
android:textSize="16sp" />
|
|
</RelativeLayout>
|
|
|
|
<RelativeLayout
|
|
android:layout_width="match_parent"
|
|
android:layout_height="52dp"
|
|
android:paddingHorizontal="16dp">
|
|
|
|
<TextView
|
|
android:id="@+id/tvVersion"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_centerVertical="true"
|
|
android:fontFamily="@font/fredoka"
|
|
android:gravity="center"
|
|
android:textColor="@color/theme_gray"
|
|
android:textSize="16sp"
|
|
tools:text="v1.0.1" />
|
|
</RelativeLayout>
|
|
</LinearLayout>
|
|
|
|
|
|
</androidx.drawerlayout.widget.DrawerLayout> |