|
|
@@ -164,20 +164,120 @@
|
|
|
android:layout_marginRight="5dp"/>
|
|
|
</RelativeLayout>
|
|
|
|
|
|
- <LinearLayout
|
|
|
- android:layout_width="match_parent"
|
|
|
- android:layout_height="100dp">
|
|
|
<TextView
|
|
|
android:id="@+id/details_data_tv"
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|
|
|
+ android:text="如下表格"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
/>
|
|
|
- </LinearLayout>
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/detail_table_ll"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical">
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/detail_table_top_ll"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="vertical"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:layout_marginRight="10dp">
|
|
|
+ <View
|
|
|
+ style="@style/expense_table_h_1dp"/>
|
|
|
+ <LinearLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:orientation="horizontal">
|
|
|
+ <View
|
|
|
+ style="@style/expense_table_v_1dp"/>
|
|
|
+ <TextView
|
|
|
+ android:text="类型"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:paddingLeft="10dp"
|
|
|
+ android:layout_gravity="center_vertical"/>
|
|
|
+ <View
|
|
|
+ style="@style/expense_table_v_1dp"/>
|
|
|
+ <TextView
|
|
|
+ android:text="金额"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:paddingLeft="10dp"
|
|
|
+ android:layout_gravity="center_vertical"
|
|
|
+ />
|
|
|
+ <View
|
|
|
+ style="@style/expense_table_v_1dp"/>
|
|
|
+ <TextView
|
|
|
+ android:text="删除"
|
|
|
+ android:layout_width="0dp"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_weight="1"
|
|
|
+ android:paddingLeft="10dp"
|
|
|
+ android:layout_gravity="center_vertical"/>
|
|
|
+ <View
|
|
|
+ style="@style/expense_table_v_1dp"
|
|
|
+ />
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <View
|
|
|
+ style="@style/expense_table_h_1dp"/>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ <com.xzjmyk.pm.activity.view.MyListView
|
|
|
+ android:id="@+id/table_details_list"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+ </com.xzjmyk.pm.activity.view.MyListView>
|
|
|
+ <LinearLayout
|
|
|
+ android:id="@+id/detail_table_bottom_ll"
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_marginLeft="10dp"
|
|
|
+ android:layout_marginRight="10dp"
|
|
|
+ android:orientation="vertical">
|
|
|
+ <RelativeLayout
|
|
|
+ android:layout_width="match_parent"
|
|
|
+ android:layout_height="wrap_content">
|
|
|
+
|
|
|
+ <View
|
|
|
+ style="@style/expense_table_v_1dp"/>
|
|
|
+
|
|
|
+ <View
|
|
|
+ android:id="@+id/right_view_v"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ style="@style/expense_table_v_1dp"/>
|
|
|
+ <TextView
|
|
|
+ android:id="@+id/sum_money_tv"
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:layout_toLeftOf="@+id/right_view_v"
|
|
|
+ android:layout_alignParentRight="true"
|
|
|
+ android:text="9999"
|
|
|
+ android:layout_marginRight="30dp"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:textColor="@color/red"/>
|
|
|
+ <TextView
|
|
|
+ android:layout_width="wrap_content"
|
|
|
+ android:layout_height="wrap_content"
|
|
|
+ android:text="总金额"
|
|
|
+ android:layout_toLeftOf="@+id/sum_money_tv"
|
|
|
+ android:layout_centerVertical="true"
|
|
|
+ android:layout_marginRight="10dp"/>
|
|
|
+ />
|
|
|
+ </RelativeLayout>
|
|
|
+ <View
|
|
|
+ style="@style/expense_table_h_1dp"/>
|
|
|
+ </LinearLayout>
|
|
|
+
|
|
|
+ </LinearLayout>
|
|
|
<View
|
|
|
+ android:layout_marginTop="10dp"
|
|
|
android:layout_width="match_parent"
|
|
|
android:layout_height="20px"
|
|
|
android:background="@color/item_line" />
|
|
|
-z
|
|
|
<TextView
|
|
|
android:layout_width="wrap_content"
|
|
|
android:layout_height="wrap_content"
|