view_advice_item.xml
1.57 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
41
42
43
44
45
46
47
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:layout_margin="3dp"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@color/white">
<TextView
android:id="@+id/colorStatus"
android:visibility="gone"
android:layout_width="5dp"
android:background="@color/white"
android:layout_height="match_parent" />
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:gravity="center"
android:padding="5dp"
android:layout_gravity="center"
android:orientation="vertical">
<com.huaheng.wmspda.view.LinearItemView
android:id="@+id/item1"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<com.huaheng.wmspda.view.LinearItemView
android:id="@+id/item2"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<com.huaheng.wmspda.view.LinearItemView
android:id="@+id/item3"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<com.huaheng.wmspda.view.LinearItemView
android:id="@+id/item4"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
<include layout="@layout/layout_line_bottom" />
</FrameLayout>