a_movie_new_tv.xml
4.7 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
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:orientation="vertical"
android:background="@drawable/ic_general_bg"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:clipChildren="false"
android:clipToPadding="false"
android:background="@drawable/ic_general_bg"
android:gravity="center|top|left"
android:layout_width="match_parent"
android:layout_height="match_parent">
<!--@drawable/ic_general_bg-->
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:paddingRight="85dp"
android:orientation="horizontal"
android:gravity="center"
android:layout_width="match_parent"
android:layout_marginLeft="40dp"
android:layout_marginTop="40dp"
android:layout_height="wrap_content">
<TextView android:layout_width="0dp"
android:layout_weight="1"
android:layout_height="wrap_content"
android:gravity="center|left"
android:drawableLeft="@drawable/ic_arrow"
android:id="@+id/type_tv"
android:text="@string/app_name"
android:clickable="true"
android:textSize="40sp"/>
<RadioGroup
android:id="@+id/orderGroup"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:orientation="vertical">
<RadioButton
android:id="@+id/nameButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@drawable/radio_bg"
android:checked="true"
android:textSize="20sp"
android:text="@string/order_by_default"/>
<RadioButton
android:id="@+id/doubanButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@drawable/radio_bg"
android:textSize="20sp"
android:text="@string/order_by_douban_rating"/>
<RadioButton
android:id="@+id/screenButton"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:button="@drawable/radio_bg"
android:textSize="20sp"
android:text="@string/order_by_screen_time"/>
</RadioGroup>
<CheckBox android:id="@+id/order_cb"
android:checked="true"
android:visibility="gone"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/order_by_douban_rating"/>
</LinearLayout>
<!-- android:focusable="false"
android:focusableInTouchMode="false"-->
<com.xgimi.gimicinema.view.TvFocusGridView
android:id="@+id/smoothGridView"
android:numColumns="5"
android:clipChildren="false"
android:clipToPadding="false"
android:layout_marginTop="48dp"
android:layout_marginLeft="65dp"
android:descendantFocusability="afterDescendants"
android:layout_marginRight="65dp"
android:layout_marginBottom="85dp"
android:horizontalSpacing="@dimen/clazz_horizontal_space"
android:verticalSpacing="15dp"
android:gravity="center"
android:scrollbars="none"
android:nextFocusLeft="@+id/smoothGridView"
android:nextFocusDown="@+id/smoothGridView"
android:nextFocusRight="@+id/smoothGridView"
android:layout_width="match_parent"
android:listSelector="@drawable/trans"
android:layout_height="match_parent">
</com.xgimi.gimicinema.view.TvFocusGridView>
<!--
android:layout_marginRight="40dp"
android:layout_marginLeft="40dp"-->
</LinearLayout>
<com.xgimi.gimicinema.view.VideoFocusBorderView
android:id="@+id/focusborderview"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:visibility="invisible"/>
</FrameLayout>