120 lines
4.3 KiB
XML
120 lines
4.3 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
xmlns:app="http://schemas.android.com/apk/res-auto"
|
|
android:layout_width="258dp"
|
|
android:layout_height="wrap_content">
|
|
|
|
<ImageView
|
|
android:layout_width="258dp"
|
|
android:layout_height="265dp"
|
|
android:layout_marginTop="35dp"
|
|
android:src="@mipmap/background_dragon_sends_money" />
|
|
|
|
<ImageView
|
|
android:id="@+id/dragon_close"
|
|
android:layout_width="16dp"
|
|
android:layout_height="16dp"
|
|
android:layout_gravity="center_horizontal|bottom"
|
|
android:src="@mipmap/icon_dragon_close" />
|
|
|
|
<ImageView
|
|
android:id="@+id/dragon_rule"
|
|
android:layout_width="16dp"
|
|
android:layout_height="16dp"
|
|
android:layout_gravity="end"
|
|
android:src="@mipmap/icon_dragon_rule" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_gravity="center_horizontal"
|
|
android:gravity="center_horizontal"
|
|
android:orientation="vertical">
|
|
|
|
<com.flyjingfish.gradienttextviewlib.GradientTextView
|
|
android:id="@+id/title"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="10dp"
|
|
android:letterSpacing="0.1"
|
|
android:text="@string/dragon_sends_money"
|
|
android:textSize="23sp"
|
|
android:textStyle="bold"
|
|
app:gradient_angle="45"
|
|
app:gradient_endColor="#F9D78F"
|
|
app:gradient_startColor="#E59F1F" />
|
|
|
|
<EditText
|
|
android:id="@+id/dragon_money"
|
|
android:layout_width="130dp"
|
|
android:layout_height="30dp"
|
|
android:layout_marginTop="100dp"
|
|
android:background="@drawable/input_dragon_money"
|
|
android:hint="@string/please_enter_the_number_of_gold_beans"
|
|
android:inputType="number"
|
|
android:paddingStart="12dp"
|
|
android:paddingEnd="12dp"
|
|
android:singleLine="true"
|
|
android:textColor="@color/white"
|
|
android:textColorHint="#C9C7C7"
|
|
android:textSize="12sp" />
|
|
|
|
<LinearLayout
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginTop="35dp"
|
|
android:gravity="center_vertical">
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/guard_my"
|
|
android:textColor="#000000"
|
|
android:textSize="14sp" />
|
|
|
|
<ImageView
|
|
android:layout_width="15dp"
|
|
android:layout_height="15dp"
|
|
android:src="@mipmap/gold_coin" />
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="2dp"
|
|
android:text=":"
|
|
android:textColor="#000000"
|
|
android:textSize="14sp" />
|
|
|
|
<TextView
|
|
android:id="@+id/my_gold_coin"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:layout_marginStart="2dp"
|
|
android:text="123456789"
|
|
android:textColor="#000000"
|
|
android:textSize="14sp" />
|
|
|
|
</LinearLayout>
|
|
|
|
<TextView
|
|
android:layout_width="wrap_content"
|
|
android:layout_marginStart="15dp"
|
|
android:layout_marginEnd="15dp"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/please_enter_the_number_of_gold_beans_hint"
|
|
android:textColor="#333333"
|
|
android:textSize="12sp" />
|
|
|
|
<Button
|
|
android:id="@+id/open_an_activity"
|
|
android:layout_width="134dp"
|
|
android:layout_height="30dp"
|
|
android:layout_marginTop="10dp"
|
|
android:layout_marginBottom="30dp"
|
|
android:background="@drawable/button_dragon_sure"
|
|
android:gravity="center"
|
|
android:text="@string/open_an_activity"
|
|
android:textColor="#893D0D"
|
|
android:textSize="15sp" />
|
|
</LinearLayout>
|
|
</FrameLayout> |