fragment_detail_tvinter.xml
1.2 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
<?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="match_parent"
android:orientation="vertical">
<include layout="@layout/divider_line" />
<include layout="@layout/divider_head_line" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<GridView
android:id="@+id/gridview"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="@android:color/white"
android:cacheColorHint="@android:color/transparent"
android:fadingEdge="none"
android:gravity="center"
android:horizontalSpacing="8dp"
android:listSelector="@android:color/transparent"
android:numColumns="4"
android:paddingLeft="8dp"
android:paddingRight="8dp"
android:scrollbars="none"
android:stretchMode="columnWidth"
android:verticalSpacing="1dp" />
<include layout="@layout/view_empty_layout" />
</RelativeLayout>
</LinearLayout>