mirror of
https://github.com/moparisthebest/k-9
synced 2024-10-31 23:55:08 -04:00
218823d7b2
More often than not, it's scrolled out of view. Other progress indicators have been implemented that are always in view.
18 lines
685 B
XML
18 lines
685 B
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<LinearLayout
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:layout_width="fill_parent"
|
|
android:layout_height="?android:attr/listPreferredItemHeight"
|
|
android:background="@drawable/message_list_item_footer_background"
|
|
android:gravity="center"
|
|
android:orientation="horizontal">
|
|
<TextView
|
|
android:id="@+id/main_text"
|
|
android:textAppearance="?android:attr/textAppearanceMedium"
|
|
android:textColor="?android:attr/textColorPrimary"
|
|
android:layout_width="wrap_content"
|
|
android:layout_height="wrap_content"
|
|
android:gravity="center"
|
|
/>
|
|
</LinearLayout>
|