Statistics
| Branch: | Revision:

root / res / layout / loadingcell.xml @ 35e7942d

History | View | Annotate | Download (888 Bytes)

1
<?xml version="1.0" encoding="utf-8"?>
2
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 
3
    android:orientation="horizontal"
4
    android:layout_width="fill_parent"
5
    android:layout_height="300px"
6
    android:gravity="center"
7
    >
8
    
9
        <ProgressBar android:id="@+id/loading_progress_bar" 
10
        android:layout_width="24px"
11
        android:paddingLeft="0px"
12
        android:paddingRight="0px"
13
        android:paddingTop="0px"
14
        android:layout_marginRight="10px"
15
        android:layout_marginLeft="10px"
16
        android:layout_marginTop="5px"
17
        android:layout_height="24px"
18
            />
19
    
20
    <TextView android:id="@+id/loading_label"
21
        android:layout_width="wrap_content"
22
        android:layout_height="wrap_content"
23
        android:layout_marginTop="5px"
24
        android:textColor="#FFFFFF"
25
        android:textSize="20sp" />
26
</LinearLayout>