|
|
@@ -2,38 +2,61 @@
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:gravity="center_vertical"
|
|
|
- android:padding="@dimen/content_padding_10"
|
|
|
- android:orientation="horizontal">
|
|
|
- <TextView
|
|
|
- android:id="@+id/my_money_item_recharge_amount"
|
|
|
- android:layout_width="0dp"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_weight="2"
|
|
|
- android:gravity="left"
|
|
|
- android:singleLine="true"
|
|
|
- android:textSize="12sp"
|
|
|
- android:textColor="#282828"
|
|
|
- android:text="充值金额100.00元"/>
|
|
|
- <TextView
|
|
|
- android:id="@+id/my_money_item_recharge_status"
|
|
|
- android:layout_width="0dp"
|
|
|
- android:layout_height="wrap_content"
|
|
|
- android:layout_weight="1"
|
|
|
- android:gravity="center"
|
|
|
- android:singleLine="true"
|
|
|
- android:textSize="12sp"
|
|
|
- android:textColor="#282828"
|
|
|
- android:text="充值成功"/>
|
|
|
- <TextView
|
|
|
- android:id="@+id/my_money_item_recharge_time"
|
|
|
- android:layout_width="0dp"
|
|
|
+ android:orientation="vertical">
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:id="@+id/my_money_item_top"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/content_padding_10"
|
|
|
+ android:background="@drawable/shape_white_solid_rectangle_small_top" />
|
|
|
+
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/my_money_item_center"
|
|
|
+ android:layout_width="match_parent"
|
|
|
android:layout_height="wrap_content"
|
|
|
- android:layout_weight="2"
|
|
|
- android:singleLine="true"
|
|
|
- android:gravity="right"
|
|
|
- android:textSize="12sp"
|
|
|
- android:textColor="#282828"
|
|
|
- android:text="2018/05/07 20:59"/>
|
|
|
+ android:gravity="center_vertical"
|
|
|
+ android:padding="@dimen/content_padding_10"
|
|
|
+ android:orientation="horizontal">
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/my_money_item_recharge_amount"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="2"
|
|
|
+ android:gravity="left"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:text="充值金额100.00元"
|
|
|
+ android:textColor="#282828"
|
|
|
+ android:textSize="12sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/my_money_item_recharge_status"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:gravity="center"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:text="充值成功"
|
|
|
+ android:textColor="#282828"
|
|
|
+ android:textSize="12sp" />
|
|
|
+
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/my_money_item_recharge_time"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="2"
|
|
|
+ android:gravity="right"
|
|
|
+ android:singleLine="true"
|
|
|
+ android:text="2018/05/07 20:59"
|
|
|
+ android:textColor="#282828"
|
|
|
+ android:textSize="12sp" />
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:id="@+id/my_money_item_bottom"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="@dimen/content_padding_10"
|
|
|
+ android:background="@drawable/shape_white_solid_rectangle_small_bottom" />
|
|
|
|
|
|
</LinearLayout>
|