Download this file

home.xml    88 lines (78 with data), 3.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
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
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/LinearLayout2"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:clickable="true"
android:orientation="vertical" >
<LinearLayout
android:id="@+id/linearLayout1"
android:layout_width="fill_parent"
android:layout_height="74.66dp"
android:layout_marginLeft="29.04dp"
android:layout_marginRight="17.82dp"
android:gravity="center" >
<ToggleButton
android:id="@+id/latest"
android:layout_width="137.33dp"
android:layout_height="40dp"
android:layout_gravity="center"
android:background="@drawable/btn_latest"
android:checked="true"
android:gravity="center"
android:textColor="#006EAB"
android:textOff="@string/latest"
android:textOn="@string/latest"
android:textSize="17.16dp" />
<ToggleButton
android:id="@+id/ratings"
android:layout_width="137.33dp"
android:layout_height="40dp"
android:layout_gravity="center"
android:background="@drawable/btn_ratings"
android:checked="false"
android:gravity="center"
android:textColor="#006EAB"
android:textOff="@string/ratings"
android:textOn="@string/ratings"
android:textSize="17.16dp" />
<ImageView
android:id="@+id/imageView1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_marginBottom="15.84dp"
android:layout_marginTop="19.14dp"
android:layout_weight="1"
android:scaleType="fitEnd"
android:src="@drawable/logo_small" />
</LinearLayout>
<RelativeLayout
android:id="@+id/bodyLayout"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:layout_marginLeft="29.04dp"
android:layout_marginRight="17.82dp"
android:layout_weight="1" >
<ProgressBar
android:id="@+id/homeProgress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true" />
<GridView
android:id="@+id/appsListView"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:cacheColorHint="#0000"
android:divider="#0000"
android:dividerHeight="7.26dp"
android:listSelector="@drawable/background_tile"
android:numColumns="@integer/home_columns"
android:verticalSpacing="7.26dp" >
</GridView>
<TextView
android:id="@+id/homeNotFound"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerInParent="true"
android:text="@string/noAppsToShow" />
</RelativeLayout>
</LinearLayout>