2011-11-30 11:45:23 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:id="@+id/headlines_row_loadmore"
|
|
|
|
android:layout_width="fill_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:background="?headlineNormalBackground"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:orientation="horizontal" >
|
|
|
|
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/loadmore_content"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:gravity="center_horizontal"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:padding="10dp" >
|
|
|
|
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/loadmore_progress"
|
|
|
|
style="?android:attr/progressBarStyleSmall"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content" />
|
|
|
|
|
|
|
|
<TextView
|
|
|
|
android:paddingLeft="6dp"
|
|
|
|
android:id="@+id/loadmore_label"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2012-01-17 11:16:59 +00:00
|
|
|
android:textColor="?headlineTextColor"
|
2012-01-17 22:01:47 +00:00
|
|
|
android:text="@string/loading_message" />
|
2011-11-30 11:45:23 +00:00
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
</LinearLayout>
|