2009-03-04 03:32:22 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- Copyright (C) 2008 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-07-16 22:10:00 +00:00
|
|
|
|
2009-03-04 03:32:22 +00:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2010-07-16 22:10:00 +00:00
|
|
|
|
2009-03-04 03:32:22 +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.
|
|
|
|
-->
|
|
|
|
|
2010-11-17 01:28:59 +00:00
|
|
|
<!-- small -->
|
2011-04-06 00:02:13 +00:00
|
|
|
<FrameLayout
|
2010-07-16 22:10:00 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_width="match_parent"
|
2010-07-21 21:29:49 +00:00
|
|
|
android:layout_height="match_parent"
|
2011-08-09 23:11:20 +00:00
|
|
|
android:background="@android:color/white"
|
2010-07-16 22:10:00 +00:00
|
|
|
>
|
2011-04-06 00:02:13 +00:00
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/loading_progress"
|
|
|
|
android:layout_width="wrap_content"
|
2010-10-04 23:00:02 +00:00
|
|
|
android:layout_height="wrap_content"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:layout_gravity="center"
|
|
|
|
style="?android:attr/progressBarStyleLarge"
|
|
|
|
/>
|
2011-06-22 21:55:15 +00:00
|
|
|
<ScrollView
|
2011-04-06 00:02:13 +00:00
|
|
|
android:id="@+id/main_panel"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
>
|
2009-03-04 03:32:22 +00:00
|
|
|
<LinearLayout
|
2011-04-06 00:02:13 +00:00
|
|
|
android:orientation="vertical"
|
2011-06-22 21:55:15 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
2011-04-06 00:02:13 +00:00
|
|
|
>
|
2011-08-09 23:11:20 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/subject"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:layout_width="match_parent"
|
2009-03-04 03:32:22 +00:00
|
|
|
android:layout_height="wrap_content"
|
2011-08-09 23:11:20 +00:00
|
|
|
android:layout_marginTop="8dip"
|
|
|
|
android:layout_marginBottom="4dip"
|
|
|
|
android:layout_marginLeft="8dip"
|
|
|
|
android:layout_marginRight="8dip"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textStyle="bold"
|
|
|
|
/>
|
|
|
|
<!-- Upper header area. -->
|
|
|
|
<include layout="@layout/message_view_header_upper" />
|
2011-06-22 21:55:15 +00:00
|
|
|
|
2011-08-09 23:11:20 +00:00
|
|
|
<!-- Addresses, timestamp, "show details" -->
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/message_view_subheader"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="16dip"
|
|
|
|
android:layout_marginRight="16dip"
|
|
|
|
>
|
|
|
|
<include layout="@layout/message_view_subheader" />
|
|
|
|
</FrameLayout>
|
2011-06-22 21:55:15 +00:00
|
|
|
|
2011-08-09 23:11:20 +00:00
|
|
|
<!-- divider -->
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_marginLeft="16dip"
|
|
|
|
android:layout_marginRight="16dip"
|
|
|
|
style="@style/message_view_horizontal_divider"
|
|
|
|
/>
|
2011-04-06 00:02:13 +00:00
|
|
|
|
|
|
|
<LinearLayout
|
2011-06-22 21:55:15 +00:00
|
|
|
android:id="@+id/message_tabs_section"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:layout_width="match_parent"
|
2010-10-04 23:00:02 +00:00
|
|
|
android:layout_height="wrap_content"
|
2011-06-22 21:55:15 +00:00
|
|
|
android:layout_marginLeft="16dip"
|
|
|
|
android:layout_marginRight="16dip"
|
|
|
|
android:orientation="vertical"
|
2011-04-06 00:02:13 +00:00
|
|
|
>
|
2011-08-05 00:39:33 +00:00
|
|
|
<Button
|
|
|
|
android:id="@+id/show_pictures"
|
|
|
|
style="?android:attr/borderlessButtonStyle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="48dip"
|
|
|
|
android:drawableLeft="@drawable/ic_show_images_holo_light"
|
|
|
|
android:drawablePadding="8dip"
|
|
|
|
android:text="@string/message_view_show_pictures_action"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
/>
|
|
|
|
|
|
|
|
<!-- The container is only used for compatibility with tablet
|
|
|
|
views -->
|
|
|
|
<FrameLayout
|
|
|
|
android:id="@+id/always_show_pictures_container"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:visibility="gone"
|
|
|
|
>
|
|
|
|
<Button
|
|
|
|
android:id="@+id/always_show_pictures_button"
|
|
|
|
style="?android:attr/borderlessButtonStyle"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="48dip"
|
|
|
|
android:drawableLeft="@android:drawable/checkbox_on_background"
|
|
|
|
android:drawablePadding="8dip"
|
|
|
|
android:text="@string/message_view_always_show_pictures_prompt"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall" />
|
|
|
|
</FrameLayout>
|
|
|
|
|
2011-06-22 21:55:15 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:layout_height="wrap_content"
|
2011-06-22 21:55:15 +00:00
|
|
|
android:orientation="horizontal"
|
|
|
|
>
|
|
|
|
<Button
|
|
|
|
android:id="@+id/show_message"
|
|
|
|
android:text="@string/message_view_show_message_action"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
style="@style/message_view_tab"
|
|
|
|
/>
|
|
|
|
<!--
|
|
|
|
Even though the "invite" section is only for MessageViewFragment, it's managed
|
|
|
|
by MessageViewFragmentBase for simplicity.
|
|
|
|
-->
|
|
|
|
<Button
|
|
|
|
android:id="@+id/show_invite"
|
|
|
|
android:text="@string/message_view_show_invite_action"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
style="@style/message_view_tab"
|
|
|
|
/>
|
|
|
|
<Button
|
|
|
|
android:id="@+id/show_attachments"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
style="@style/message_view_tab"
|
|
|
|
/>
|
|
|
|
<View
|
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="0dip"
|
|
|
|
android:layout_weight="1"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
<View
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
style="@style/message_view_horizontal_divider"
|
2011-04-06 00:02:13 +00:00
|
|
|
/>
|
|
|
|
</LinearLayout>
|
2011-06-22 21:55:15 +00:00
|
|
|
<!-- end of tab area -->
|
2011-04-06 00:02:13 +00:00
|
|
|
<!--
|
2011-06-22 21:55:15 +00:00
|
|
|
content area - only one of them is visible at a time.
|
2011-04-06 00:02:13 +00:00
|
|
|
-->
|
2011-08-11 23:45:49 +00:00
|
|
|
<com.android.email.view.RigidWebView
|
2011-06-22 21:55:15 +00:00
|
|
|
android:id="@+id/message_content"
|
|
|
|
android:layout_width="match_parent"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:layout_height="wrap_content"
|
2011-06-22 21:55:15 +00:00
|
|
|
android:layout_marginLeft="16dip"
|
|
|
|
android:layout_marginRight="16dip"
|
2011-08-11 23:45:49 +00:00
|
|
|
android:background="@android:color/white"
|
2011-06-22 21:55:15 +00:00
|
|
|
android:visibility="gone"
|
2011-04-06 00:02:13 +00:00
|
|
|
/>
|
2011-08-15 18:59:51 +00:00
|
|
|
|
|
|
|
<!-- TODO: remove these useless scroll views. They are carry-over
|
|
|
|
from an existing design and are no longer needed. -->
|
2011-04-06 00:02:13 +00:00
|
|
|
<!--
|
2011-06-22 21:55:15 +00:00
|
|
|
Even though the "invite" section is only for MessageViewFragment,
|
|
|
|
Its visibility is controlled by MessageViewFragmentBase for simplicity.
|
2011-04-06 00:02:13 +00:00
|
|
|
-->
|
2011-06-22 21:55:15 +00:00
|
|
|
<ScrollView
|
|
|
|
android:id="@+id/invite_scroll"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
2011-06-22 21:55:15 +00:00
|
|
|
android:layout_marginLeft="16dip"
|
|
|
|
android:layout_marginRight="16dip"
|
2011-08-15 18:59:51 +00:00
|
|
|
android:paddingTop="16dip"
|
|
|
|
android:paddingBottom="16dip"
|
2011-06-22 21:55:15 +00:00
|
|
|
android:visibility="gone"
|
|
|
|
>
|
|
|
|
<!--
|
|
|
|
Invite section - the views in it are controlled only by MessageViewFragment.
|
|
|
|
MessageViewFragment shouldn't know what's inside it.
|
|
|
|
-->
|
|
|
|
<include layout="@layout/message_view_invitation" />
|
|
|
|
</ScrollView>
|
|
|
|
<ScrollView
|
|
|
|
android:id="@+id/attachments_scroll"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_marginLeft="16dip"
|
|
|
|
android:layout_marginRight="16dip"
|
|
|
|
android:visibility="gone"
|
|
|
|
>
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/attachments"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="4dip"
|
2011-08-15 18:59:51 +00:00
|
|
|
android:background="@android:color/white"
|
2011-06-22 21:55:15 +00:00
|
|
|
/>
|
|
|
|
</ScrollView>
|
|
|
|
<!-- end of content area -->
|
|
|
|
</LinearLayout>
|
|
|
|
</ScrollView>
|
2011-04-06 00:02:13 +00:00
|
|
|
</FrameLayout>
|