forked from Tencent/APIJSON
-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathgrid_picker_view.xml
More file actions
executable file
·36 lines (30 loc) · 1.15 KB
/
grid_picker_view.xml
File metadata and controls
executable file
·36 lines (30 loc) · 1.15 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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
style="@style/ll_vertical_match_wrap"
tools:context=".ui.GridPickerView" >
<HorizontalScrollView
style="@style/match_wrap"
android:layout_height="36dp"
android:background="@color/alpha_3" >
<LinearLayout
android:id="@+id/llGridPickerViewTabContainer"
style="@style/ll_horizontal_wrap_match" >
</LinearLayout>
</HorizontalScrollView>
<View style="@style/divider_horizontal_1px" />
<LinearLayout
android:id="@+id/llGridPickerViewHeaderViewContainer"
style="@style/ll_horizontal_match_wrap"
android:layout_height="20dp"
android:background="@color/white_slight"
android:visibility="gone" >
</LinearLayout>
<GridView
android:id="@+id/gvGridPickerView"
style="@style/match_match"
android:layout_height="@dimen/grid_picker_content_height"
android:listSelector="@drawable/null_drawable"
android:numColumns="3" >
</GridView>
</LinearLayout>