blob: 2909cdb5320fbd6e4755b8f27af8ba104deab823 [file] [log] [blame]
<?xml version="1.0" encoding="utf-8"?>
<!--
/*
* Copyright (c) 2007 Google Inc.
*
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
* You may obtain a copy of the License at
*
* http://www.apache.org/licenses/LICENSE-2.0
*
* Unless required by applicable law or agreed to in writing, software
* distributed under the License is distributed on an "AS IS" BASIS,
* WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-->
<com.android.mail.browse.ConversationListFooterView
xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="horizontal"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@android:color/white">
<LinearLayout android:id="@+id/network_error"
android:layout_width="match_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:padding="5dip"
android:visibility="gone"
android:gravity="center_vertical">
<ImageView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:src="@drawable/ic_alert_grey" />
<TextView android:id="@+id/error_text"
android:layout_width="0dip"
android:layout_height="wrap_content"
android:layout_weight="1"
android:textAppearance="?android:attr/textAppearanceLargeInverse"
android:layout_marginBottom="1dip"
android:paddingLeft="5dip"
android:textColor="@android:color/black"
android:text="@string/network_error"/>
<Button android:id="@+id/error_action_button"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="?android:attr/buttonStyleSmall"
android:textColor="@android:color/black"
android:paddingTop="15dip"
android:paddingBottom="15dip"
android:paddingLeft="20dip"
android:paddingRight="20dip"/>
</LinearLayout>
<LinearLayout android:id="@+id/loading"
android:layout_width="match_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:gravity="center"
android:visibility="gone">
<ProgressBar
style="?android:attr/progressBarStyle"
android:indeterminate="true"
android:layout_width="32dp"
android:layout_height="32dp" />
</LinearLayout>
<LinearLayout android:id="@+id/load_more"
android:layout_width="match_parent"
android:layout_height="?android:attr/listPreferredItemHeight"
android:gravity="center"
android:visibility="gone"
android:clickable="true"
android:background="?android:attr/selectableItemBackground">
<TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textAppearance="?android:attr/textAppearanceLargeInverse"
android:layout_marginBottom="1dip"
android:paddingLeft="5dip"
android:textColor="@android:color/black"
android:text="@string/load_more"/>
</LinearLayout>
</com.android.mail.browse.ConversationListFooterView>