layout_textandimgshow.xml
1.81 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
48
49
<?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:layout_margin="@dimen/size_dp_10"
android:layout_marginBottom="@dimen/size_dp_5"
android:layout_marginTop="@dimen/size_dp_5"
android:background="@color/white"
android:orientation="horizontal"
android:padding="@dimen/size_dp_10">
<com.shunzhi.parent.views.TextAndImgShowView
android:id="@+id/textAndImg1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="?android:selectableItemBackground">
</com.shunzhi.parent.views.TextAndImgShowView>
<com.shunzhi.parent.views.TextAndImgShowView
android:id="@+id/textAndImg2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="?android:selectableItemBackground">
</com.shunzhi.parent.views.TextAndImgShowView>
<com.shunzhi.parent.views.TextAndImgShowView
android:id="@+id/textAndImg3"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="?android:selectableItemBackground">
</com.shunzhi.parent.views.TextAndImgShowView>
<com.shunzhi.parent.views.TextAndImgShowView
android:id="@+id/textAndImg4"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight="1"
android:background="?android:selectableItemBackground">
</com.shunzhi.parent.views.TextAndImgShowView>
</LinearLayout>