2009-06-30 22:12:23 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- Copyright (C) 2009 The Android Open Source Project
|
|
|
|
|
|
|
|
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
|
2010-08-16 18:00:53 +00:00
|
|
|
|
2009-06-30 22:12:23 +00:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2010-08-16 18:00:53 +00:00
|
|
|
|
2009-06-30 22:12:23 +00:00
|
|
|
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.
|
|
|
|
-->
|
|
|
|
|
2009-07-08 23:09:45 +00:00
|
|
|
<LinearLayout
|
2009-06-30 22:12:23 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2009-07-08 23:09:45 +00:00
|
|
|
android:orientation="vertical"
|
2010-01-08 23:06:52 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent">
|
2009-09-18 22:31:37 +00:00
|
|
|
|
2010-02-10 15:46:41 +00:00
|
|
|
<include layout="@layout/list_title" />
|
2009-09-18 22:31:37 +00:00
|
|
|
<include layout="@layout/connection_error_banner" />
|
|
|
|
|
2010-06-10 22:20:58 +00:00
|
|
|
<fragment
|
2010-07-08 00:06:23 +00:00
|
|
|
android:id="@+id/message_list_fragment"
|
2010-08-16 18:00:53 +00:00
|
|
|
class="com.android.email.activity.MessageListFragment"
|
2010-01-08 23:06:52 +00:00
|
|
|
android:layout_width="match_parent"
|
2009-07-08 23:09:45 +00:00
|
|
|
android:layout_height="0dip"
|
|
|
|
android:layout_weight="1" />
|
|
|
|
|
|
|
|
<!-- Footer in Multi-select mode -->
|
|
|
|
<LinearLayout android:id="@+id/footer_organize"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:visibility="gone"
|
2010-01-08 23:06:52 +00:00
|
|
|
android:layout_width="match_parent"
|
2009-07-08 23:09:45 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:paddingTop="5dip"
|
|
|
|
android:paddingLeft="4dip"
|
|
|
|
android:paddingRight="4dip"
|
|
|
|
android:paddingBottom="1dip"
|
|
|
|
android:background="@android:drawable/bottom_bar">
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/btn_read_unread"
|
|
|
|
android:layout_width="0dip"
|
2010-01-08 23:06:52 +00:00
|
|
|
android:layout_height="match_parent"
|
2009-07-08 23:09:45 +00:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/read_unread_action" />
|
|
|
|
|
|
|
|
<Button
|
|
|
|
android:id="@+id/btn_multi_favorite"
|
|
|
|
android:layout_width="0dip"
|
2010-01-08 23:06:52 +00:00
|
|
|
android:layout_height="match_parent"
|
2009-07-08 23:09:45 +00:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/favorite_action" />
|
|
|
|
|
|
|
|
<Button android:id="@+id/btn_multi_delete"
|
|
|
|
android:layout_width="0dip"
|
2010-01-08 23:06:52 +00:00
|
|
|
android:layout_height="match_parent"
|
2009-07-08 23:09:45 +00:00
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/delete_action" />
|
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
</LinearLayout>
|