blob: 6c26b4aeec0bb0d9009cbd45a312a5eb1d4096c0 (
plain)
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
105
106
107
|
<?xml version="1.0" encoding="utf-8"?>
<ViewFlipper xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/flipper"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<RelativeLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<LinearLayout
android:id="@+id/whatson_time"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentLeft="true"
android:layout_alignParentTop="true"
android:orientation="horizontal" >
<Spinner
android:id="@+id/epg_list_channel_spinner"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginTop="3dip"
android:layout_weight="1"
android:prompt="@string/epg_list_channel_spinner" />
<ImageView
android:id="@+id/switch_epg_view"
style="?android:attr/buttonStyleSmall"
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_centerHorizontal="true"
android:layout_gravity="center_horizontal"
android:background="@android:drawable/list_selector_background"
android:clickable="true"
android:src="@drawable/ic_menu_revert" />
</LinearLayout>
<ListView
android:id="@+id/whatson_list"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_above="@+id/channel_info"
android:layout_alignWithParentIfMissing="true"
android:layout_below="@+id/whatson_time"
android:layout_centerHorizontal="true"
android:cacheColorHint="?android:attr/colorBackground" />
<LinearLayout
android:id="@+id/channel_info"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:background="@drawable/back"
android:orientation="horizontal"
android:layout_marginTop="4dp"
android:padding="2dp" >
<ImageView
android:id="@+id/audio_image"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_volume_small" />
<TextView
android:id="@+id/channel_audio"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_marginLeft="5dp"
android:text="" />
</LinearLayout>
</RelativeLayout>
<LinearLayout
android:id="@+id/no_connection_layout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:orientation="vertical" >
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:gravity="center"
android:orientation="horizontal" >
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/no_connection"
android:textSize="18dip" />
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/sad" />
<Button
android:id="@+id/retry_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="@string/no_connection_retry"
android:textSize="18dip" />
</LinearLayout>
</LinearLayout>
</ViewFlipper>
|