aboutsummaryrefslogtreecommitdiffstats
path: root/res/layout/listpage_refresh_layout.xml
blob: 3917e455c322f2399fe64739dc817eec3a1a19d2 (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
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="@color/White"
    android:gravity="center_horizontal"
    android:orientation="vertical" >

    <ListView
        android:id="@+id/listpage_listview"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:divider="@color/Gray2"
        android:dividerHeight="1dp"
        android:footerDividersEnabled="true" >

    </ListView>

        <FrameLayout
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:layout_marginBottom="5dp"
            android:layout_marginLeft="5dp"
            android:layout_marginRight="5dp"
            android:layout_marginTop="5dp"
            android:background="@color/Gray"
            android:padding="1dp" >

            <Button
                android:id="@+id/listpage_refresh"
                style="@style/whiteBtn"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:gravity="center"
                android:minHeight="36dp"
                android:text="Refresh" />

        </FrameLayout>

</LinearLayout>