123456789101112131415161718192021222324252627282930313233343536373839404142434445464748495051525354555657585960616263646566676869707172737475767778798081828384858687888990919293949596979899100101102103104105106107108109110111112113114115116117118119120121122123124125126127128129130131132133134135136137138139140141142143144145146147148149150151152153154155156157158159160161162163164165166 |
- <?xml version="1.0" encoding="utf-8"?>
- <FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <LinearLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:background="@mipmap/rad_packet_fragment_bg"
- android:orientation="vertical"
- android:padding="32dp">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content">
- <LinearLayout
- android:id="@+id/ll_amount"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignBottom="@+id/edt_input_money"
- android:orientation="horizontal">
- <ImageView
- android:id="@+id/iv_icon_pin"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginEnd="4dp"
- android:src="@mipmap/icon_pin" />
- <TextView
- android:id="@+id/tv_amount"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignParentStart="true"
- android:layout_marginBottom="3dp"
- android:text="金额"
- android:textColor="#333333"
- android:textSize="@dimen/sp_14_text_size" />
- </LinearLayout>
- <EditText
- android:id="@+id/edt_input_money"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginStart="2dp"
- android:layout_marginEnd="2dp"
- android:layout_toStartOf="@+id/tv_yuan"
- android:layout_toEndOf="@+id/ll_amount"
- android:background="@color/transparent"
- android:gravity="bottom|end"
- android:hint="0.01"
- android:inputType="numberDecimal"
- android:maxLength="10"
- android:textColor="#ff462f"
- android:textColorHint="#999999"
- android:textSize="24dp" />
- <TextView
- android:id="@+id/tv_yuan"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignBottom="@+id/edt_input_money"
- android:layout_alignParentEnd="true"
- android:layout_marginBottom="3dp"
- android:text="元"
- android:textColor="#333333"
- android:textSize="@dimen/sp_14_text_size" />
- </RelativeLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:layout_marginTop="16dp"
- android:background="#dddddd" />
- <ViewStub
- android:id="@+id/view_stub_red_packet_count"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- <ViewStub
- android:id="@+id/view_stub_red_packet_type"
- android:layout_width="match_parent"
- android:layout_height="wrap_content" />
- <LinearLayout
- android:id="@+id/ll_remark"
- android:orientation="vertical"
- android:layout_width="match_parent"
- android:layout_height="match_parent">
- <RelativeLayout
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginTop="36dp">
- <TextView
- android:id="@+id/tv_remark"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_alignBottom="@+id/edt_input_remark"
- android:layout_alignParentStart="true"
- android:layout_marginBottom="3dp"
- android:hint="0.01"
- android:text="备注:"
- android:textColor="#333333"
- android:textColorHint="#999999"
- android:textSize="@dimen/sp_14_text_size" />
- <EditText
- android:id="@+id/edt_input_remark"
- android:layout_width="match_parent"
- android:layout_height="wrap_content"
- android:layout_marginStart="2dp"
- android:layout_toRightOf="@+id/tv_remark"
- android:background="@color/transparent"
- android:gravity="center_vertical|end"
- android:hint="恭喜发财,大吉大利!"
- android:singleLine="true"
- android:textColor="#333333"
- android:textSize="18dp" />
- </RelativeLayout>
- <View
- android:layout_width="match_parent"
- android:layout_height="1px"
- android:layout_marginTop="16dp"
- android:background="#dddddd" />
- </LinearLayout>
- <TextView
- android:id="@+id/tv_red_packet_type"
- android:layout_width="wrap_content"
- android:layout_height="wrap_content"
- android:layout_marginTop="16dp"
- android:gravity="center"
- android:text="当前为拼手气红包,改为普通红包"
- android:textColor="#333333"
- android:textSize="12sp" />
- <TextView
- android:id="@+id/tv_send_red_packet"
- android:layout_width="match_parent"
- android:layout_height="50dp"
- android:layout_gravity="center_horizontal"
- android:layout_marginStart="10dp"
- android:layout_marginTop="85dp"
- android:layout_marginEnd="10dp"
- android:layout_marginBottom="35dp"
- android:background="@drawable/selector_send_red_packet"
- android:gravity="center"
- android:text="发送群红包"
- android:textColor="@color/white"
- android:textSize="18sp" />
- </LinearLayout>
- </FrameLayout>
|