66 lines
2.7 KiB
XML
66 lines
2.7 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:gravity="center_vertical"
|
|
android:orientation="vertical"
|
|
android:background="@drawable/rainbow_home_background"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="match_parent">
|
|
<com.ubt.jimu.widgets.NavigationBarView
|
|
android:id="@+id/nbv_bar"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
app:nbv_mode="left"/>
|
|
<LinearLayout
|
|
android:orientation="vertical"
|
|
android:background="@drawable/reel_background"
|
|
android:layout_width="448dp"
|
|
android:layout_height="446dp"
|
|
android:layout_marginTop="36dp"
|
|
android:layout_marginRight="135dp"
|
|
android:layout_marginBottom="18dp"
|
|
android:layout_alignParentRight="true">
|
|
<LinearLayout
|
|
android:gravity="center"
|
|
android:orientation="vertical"
|
|
android:layout_width="248dp"
|
|
android:layout_height="308dp"
|
|
android:layout_below="@+id/nbv_bar">
|
|
<Button
|
|
android:id="@+id/btn_help"
|
|
android:background="@color/transparent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="How to play"
|
|
android:textAllCaps="false"/>
|
|
<Button
|
|
android:id="@+id/btn_my_reward"
|
|
android:background="@color/transparent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="My Reward"
|
|
android:textAllCaps="false"/>
|
|
<Button
|
|
android:id="@+id/btn_beginner"
|
|
android:background="@color/transparent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Beginner"
|
|
android:textAllCaps="false"/>
|
|
<Button
|
|
android:id="@+id/btn_option"
|
|
android:background="@color/transparent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Option"
|
|
android:textAllCaps="false"/>
|
|
<Button
|
|
android:id="@+id/btn_start"
|
|
android:background="@color/transparent"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content"
|
|
android:text="Start"
|
|
android:textAllCaps="false"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|
|
</RelativeLayout>
|