59 lines
2.1 KiB
XML
59 lines
2.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
||
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
||
xmlns:tools="http://schemas.android.com/tools"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="match_parent"
|
||
android:background="@color/mainBg"
|
||
android:orientation="vertical"
|
||
tools:viewBindingIgnore="true">
|
||
|
||
<RelativeLayout
|
||
android:layout_width="match_parent"
|
||
android:layout_height="54dp"
|
||
android:layout_marginTop="16dp"
|
||
android:background="@android:color/white">
|
||
|
||
<EditText
|
||
android:id="@+id/skill_price_setting_input"
|
||
android:layout_width="match_parent"
|
||
android:layout_height="54dp"
|
||
android:layout_marginLeft="16dp"
|
||
android:background="@null"
|
||
android:hint="输入金额"
|
||
android:inputType="numberDecimal"
|
||
android:text="0.00"
|
||
android:textColor="@android:color/black"
|
||
android:textSize="14sp" />
|
||
|
||
<TextView
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:layout_alignParentRight="true"
|
||
android:layout_centerVertical="true"
|
||
android:layout_marginRight="16dp"
|
||
android:text="金币/分"
|
||
android:textColor="@color/loginText2"
|
||
android:textSize="14sp" />
|
||
</RelativeLayout>
|
||
|
||
<TextView
|
||
android:id="@+id/tv_price_interval"
|
||
android:layout_width="wrap_content"
|
||
android:layout_height="wrap_content"
|
||
android:layout_marginStart="16dp"
|
||
android:layout_marginTop="8dp"
|
||
android:text="可设置价格区间:100-1000金币"
|
||
android:textColor="@color/two_text"
|
||
android:textSize="12dp" />
|
||
|
||
<Button
|
||
android:id="@+id/skill_price_setting_button_confirm"
|
||
android:layout_width="295dp"
|
||
android:layout_height="48dp"
|
||
android:layout_gravity="center"
|
||
android:layout_marginTop="80dp"
|
||
android:enabled="true"
|
||
android:text="确定"
|
||
android:textSize="17sp" />
|
||
|
||
</LinearLayout> |