Files
qianyanAndroid/app/src/main/res/layout/activity_skill_price_setting.xml
被淹死的鱼 cd3b53759e 第一次提交
2026-03-11 18:26:29 +08:00

59 lines
2.1 KiB
XML
Raw Blame History

This file contains ambiguous Unicode characters
This file contains Unicode characters that might be confused with other characters. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.
<?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>