item_sale_step.xml
1.34 KB
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal">
<TextView
android:id="@+id/tv_time"
style="@style/sale_item_text"
android:maxLines="5"
android:textSize="12sp"
android:layout_width="95dp"
android:layout_height="match_parent"
android:background="@drawable/bg_order_step_item1"
android:gravity="center"
android:text="@string/sale_time_str" />
<TextView
android:id="@+id/tv_progress"
style="@style/sale_item_text"
android:layout_width="95dp"
android:maxLines="5"
android:layout_height="match_parent"
android:background="@drawable/bg_order_step_item2"
android:gravity="center"
android:textSize="12sp"
android:text="@string/sale_progress_str" />
<TextView
android:id="@+id/tv_detail"
style="@style/sale_item_text"
android:textSize="12sp"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@drawable/bg_order_step_item1"
android:maxLines="5"
android:gravity="center"
android:text="@string/sale_record_str" />
</LinearLayout>