layout_textandimgshow.xml
2.66 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
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
<?xml version="1.0" encoding="utf-8"?>
<android.support.design.widget.CoordinatorLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:scrollbars="none">
<HorizontalScrollView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:scrollbars="none"
>
<LinearLayout
android:id="@+id/layout_control"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/size_dp_5"
android:layout_marginTop="@dimen/size_dp_5"
android:background="@drawable/report_white"
android:elevation="@dimen/size_dp_3"
android:orientation="horizontal"
android:padding="@dimen/size_dp_10">
<!-- <LinearLayout
android:visibility="gone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="horizontal">
<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>-->
</LinearLayout>
</HorizontalScrollView>
</android.support.design.widget.CoordinatorLayout>