29 lines
1.1 KiB
XML
29 lines
1.1 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:gravity="bottom"
|
|
android:orientation="horizontal"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<LinearLayout
|
|
android:gravity="center"
|
|
android:orientation="horizontal"
|
|
android:id="@+id/headerTextLayout"
|
|
android:paddingTop="10dp"
|
|
android:layout_width="match_parent"
|
|
android:layout_height="wrap_content">
|
|
<ImageView
|
|
android:id="@+id/head_progressBar"
|
|
android:layout_width="@dimen/loading_small"
|
|
android:layout_height="@dimen/loading_small"
|
|
android:src="@drawable/ic_loading_small"
|
|
android:scaleType="fitCenter"/>
|
|
<TextView
|
|
android:textSize="14sp"
|
|
android:textColor="#98a5b6"
|
|
android:id="@+id/refresh_status_textview"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:text="@string/pull_to_refresh_pull_label"/>
|
|
</LinearLayout>
|
|
</LinearLayout>
|