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-04-06 00:02:13 +00:00
|
|
|
android:background="#ffffffff"
|
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"
|
|
|
|
/>
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/main_panel"
|
2010-10-04 23:00:02 +00:00
|
|
|
android:orientation="vertical"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="match_parent"
|
|
|
|
>
|
|
|
|
<!-- header area -->
|
2009-03-04 03:32:22 +00:00
|
|
|
<LinearLayout
|
Let MessageViewFragment own bottom buttons.
Create a custom view containing the bottons below MVF
(delete, move, reply, etc) and let MVF own this.
These buttons used to be owned by the XL activity itself, because
the UI for these commands will most likely be totally different
from the tablet UI, so the fragment having them looked wrong.
However, this made it harder to make changes suggested by the latest
mock, such as "put reply/forward in the message header".
I think the buttons are semantically part of the message view anyway,
so the fragment owning UI for these commands is probably the way to go.
(And let's worry about the phone UI later.)
Reason for the use of a custom view is that it will make it easier
to make non-trivial UI changes, e.g. "combine reply, reply-all and
forward and make it dropdown."
Also removed obsolete TODOs from MessageListXL.
Change-Id: Ibf93f4c70fe07bdbbe33d2adb6bbd2b96812830d
2010-09-16 18:16:46 +00:00
|
|
|
android:layout_width="match_parent"
|
2010-10-04 23:00:02 +00:00
|
|
|
android:layout_height="wrap_content"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:orientation="vertical"
|
|
|
|
android:paddingTop="3dip"
|
|
|
|
android:paddingBottom="3dip"
|
|
|
|
android:paddingLeft="3dip"
|
|
|
|
android:paddingRight="6dip"
|
|
|
|
>
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2009-03-04 03:32:22 +00:00
|
|
|
android:layout_height="wrap_content"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:baselineAligned="true"
|
|
|
|
>
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/badge"
|
2011-06-15 01:06:24 +00:00
|
|
|
android:layout_width="32dip"
|
|
|
|
android:layout_height="32dip"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:layout_gravity="center_vertical"
|
2011-06-15 01:06:24 +00:00
|
|
|
android:layout_marginRight="2dip"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:layout_marginLeft="2dip"
|
|
|
|
/>
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/presence"
|
|
|
|
android:src="@android:drawable/presence_offline"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2011-06-15 01:06:24 +00:00
|
|
|
android:layout_marginRight="2dip"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:layout_gravity="center_vertical"
|
|
|
|
/>
|
2011-06-15 01:06:24 +00:00
|
|
|
<RelativeLayout
|
2011-04-06 00:02:13 +00:00
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1.0"
|
|
|
|
android:paddingRight="6dip"
|
2011-06-15 01:06:24 +00:00
|
|
|
>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/from_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
/>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/from_address"
|
|
|
|
android:layout_below="@+id/from_name"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
/>
|
|
|
|
</RelativeLayout>
|
2011-04-06 00:02:13 +00:00
|
|
|
<!-- Reply/Forward buttons are default gone for MessageFileView -->
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/reply"
|
|
|
|
android:src="@drawable/reply"
|
|
|
|
android:layout_width="32dip"
|
|
|
|
android:layout_height="24dip"
|
|
|
|
android:layout_margin="6dip"
|
|
|
|
android:baselineAlignBottom="true"
|
|
|
|
android:visibility="gone"
|
|
|
|
/>
|
|
|
|
<ImageView
|
2011-06-15 01:06:24 +00:00
|
|
|
android:id="@+id/favorite"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:layout_width="32dip"
|
|
|
|
android:layout_height="24dip"
|
|
|
|
android:layout_margin="6dip"
|
2011-06-15 01:06:24 +00:00
|
|
|
android:src="@drawable/btn_star_off_normal_email_holo_light"
|
2011-04-06 00:02:13 +00:00
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<!-- To, Cc, Bcc addresses -->
|
2010-10-04 23:00:02 +00:00
|
|
|
<TextView
|
2011-04-06 00:02:13 +00:00
|
|
|
android:id="@+id/addresses"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:layout_width="match_parent"
|
2010-11-12 01:38:21 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:ellipsize="end"
|
|
|
|
/>
|
2011-04-06 00:02:13 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
2010-10-04 23:00:02 +00:00
|
|
|
android:layout_height="wrap_content"
|
2011-04-06 00:02:13 +00:00
|
|
|
>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/subject"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?android:attr/textColorSecondary"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_weight="1.0"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="end"
|
|
|
|
/>
|
2011-06-15 01:06:24 +00:00
|
|
|
<TextView
|
|
|
|
android:id="@+id/datetime"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?android:attr/textColorPrimary"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2011-06-15 01:06:24 +00:00
|
|
|
android:layout_marginLeft="4dip"
|
|
|
|
android:singleLine="true"
|
2011-04-06 00:02:13 +00:00
|
|
|
/>
|
|
|
|
<Button
|
|
|
|
android:id="@+id/show_details"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="0dip"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:text="@string/message_view_show_details"
|
|
|
|
android:textSize="14dip"
|
|
|
|
android:textColor="@color/text_ternary_color"
|
|
|
|
android:textStyle="bold"
|
|
|
|
android:singleLine="true"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|
|
|
|
|
2010-09-30 21:25:57 +00:00
|
|
|
|
2010-10-04 23:00:02 +00:00
|
|
|
</LinearLayout>
|
2011-04-06 00:02:13 +00:00
|
|
|
<!-- end of header area -->
|
2011-01-10 21:35:47 +00:00
|
|
|
|
2011-04-06 00:02:13 +00:00
|
|
|
<!-- tab area -->
|
2010-10-04 23:00:02 +00:00
|
|
|
<LinearLayout
|
2011-04-06 00:02:13 +00:00
|
|
|
android:id="@+id/message_tabs_section"
|
2010-10-04 23:00:02 +00:00
|
|
|
android:layout_width="match_parent"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
android:paddingLeft="6dip"
|
|
|
|
android:paddingRight="6dip"
|
|
|
|
android:paddingTop="6dip"
|
|
|
|
android:paddingBottom="6dip"
|
|
|
|
>
|
|
|
|
<Button
|
|
|
|
android:id="@+id/show_message"
|
|
|
|
android:text="@string/message_view_show_message_action"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
/>
|
|
|
|
<!--
|
|
|
|
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_gravity="center"
|
|
|
|
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
|
|
|
/>
|
|
|
|
<Button
|
|
|
|
android:id="@+id/show_attachments"
|
|
|
|
android:layout_gravity="center"
|
2010-10-04 23:00:02 +00:00
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
2011-04-06 00:02:13 +00:00
|
|
|
/>
|
|
|
|
<View
|
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="0dip"
|
|
|
|
android:layout_weight="1"
|
|
|
|
/>
|
|
|
|
<Button
|
|
|
|
android:id="@+id/show_pictures"
|
|
|
|
android:text="@string/message_view_show_pictures_action"
|
|
|
|
android:layout_gravity="center"
|
|
|
|
android:layout_width="wrap_content"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
/>
|
2010-10-04 23:00:02 +00:00
|
|
|
</LinearLayout>
|
2011-04-06 00:02:13 +00:00
|
|
|
<!-- end of tab area -->
|
2010-10-04 23:00:02 +00:00
|
|
|
<!--
|
2011-04-06 00:02:13 +00:00
|
|
|
content area - only one of them is visible at a time.
|
2010-10-04 23:00:02 +00:00
|
|
|
-->
|
2011-04-06 00:02:13 +00:00
|
|
|
<WebView
|
|
|
|
android:id="@+id/message_content"
|
|
|
|
android:layout_width="match_parent"
|
2010-10-04 23:00:02 +00:00
|
|
|
android:layout_height="0dip"
|
|
|
|
android:layout_weight="1"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:background="#ffffff"
|
|
|
|
android:visibility="gone"
|
2010-10-04 23:00:02 +00:00
|
|
|
/>
|
|
|
|
<!--
|
2011-04-06 00:02:13 +00:00
|
|
|
Even though the "invite" section is only for MessageViewFragment,
|
|
|
|
Its visibility is controlled by MessageViewFragmentBase for simplicity.
|
2010-10-04 23:00:02 +00:00
|
|
|
-->
|
2011-04-06 00:02:13 +00:00
|
|
|
<ScrollView
|
|
|
|
android:id="@+id/invite_scroll"
|
2010-10-04 23:00:02 +00:00
|
|
|
android:layout_width="match_parent"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:layout_height="0dip"
|
|
|
|
android:layout_weight="1"
|
|
|
|
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="0dip"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:visibility="gone"
|
|
|
|
>
|
|
|
|
<LinearLayout
|
|
|
|
android:id="@+id/attachments"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:padding="4dip"
|
|
|
|
android:background="#ffffff"
|
|
|
|
/>
|
|
|
|
</ScrollView>
|
|
|
|
<!-- end of content area -->
|
|
|
|
</LinearLayout>
|
|
|
|
</FrameLayout>
|