<?xml version="1.0" encoding="utf-8"?>
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
android:id="@+id/loading_view"
|
android:layout_width="match_parent"
|
android:layout_height="match_parent"
|
android:gravity="center"
|
android:orientation="horizontal">
|
|
<ProgressBar
|
android:id="@+id/loading_progress"
|
android:layout_width="22dp"
|
android:layout_height="22dp"
|
android:layout_marginRight="4dp"
|
/>
|
|
<TextView
|
android:id="@+id/loading_text"
|
android:layout_width="wrap_content"
|
android:layout_height="wrap_content"
|
android:layout_marginLeft="4dp"
|
android:text="@string/list_footer_loading"
|
android:textSize="15sp" />
|
</LinearLayout>
|