<?xml version="1.0" encoding="utf-8"?>
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:layout_width="fill_parent"
|
android:layout_height="fill_parent"
|
android:paddingTop="@dimen/h10dp"
|
android:paddingBottom="@dimen/h10dp">
|
|
<TextView
|
android:id="@+id/pull_to_refresh_text"
|
android:text="Pull to refresh..."
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
android:textStyle="bold"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_centerInParent="true" />
|
|
<ProgressBar
|
android:id="@+id/pull_to_refresh_progress"
|
android:indeterminate="true"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="@dimen/w30dp"
|
android:layout_marginRight="@dimen/w20dp"
|
android:visibility="gone"
|
android:layout_centerVertical="true"
|
style="?android:attr/progressBarStyleSmall" />
|
|
<ImageView
|
android:id="@+id/pull_to_refresh_image"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="@dimen/w30dp"
|
android:layout_marginRight="@dimen/w20dp"
|
android:layout_centerVertical="true" />
|
</RelativeLayout>
|