replicant-packages_apps_Email/res/layout/message_view_attachment.xml
Marc Blank 09fd4d0a18 New asynchronous attachment loading code
* Create AttachmentDownloadService to manage all attachment downloads
  1) User requested
  2) Required for email forwarding
  3) Opportunistic downloads to enhance offline use
* New attachment related UI (pending UX approval, of course)
  1) MessageView (attachment actions, progress bar, etc.)
  2) MessageCompose (attachments for forwarded messages)
  3) Associated toasts, notifications, etc.

TODO:
* Unit tests
* Cache Management (separate CL)

Change-Id: I7864a5fb1c3f4f2be68d98341a971edc6cbacfe1
2010-08-19 14:01:08 -07:00

131 lines
6.0 KiB
XML

<?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
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.
-->
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="4dip">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingLeft="4dip">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="@drawable/text_box"
android:gravity="center_vertical">
<ImageView
android:id="@+id/attachment_icon"
android:layout_width="62dip"
android:layout_height="62dip"
android:layout_marginLeft="4dip"
android:layout_marginRight="4dip"
android:layout_marginBottom="4dip"
android:layout_marginTop="4dip"
android:src="@drawable/attached_image_placeholder" />
<TextView
android:id="@+id/attachment_name"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentTop="true"
android:layout_toRightOf="@id/attachment_icon"
android:layout_alignParentRight="true"
android:layout_alignWithParentIfMissing="true"
android:textAppearance="?android:attr/textAppearanceMedium"
android:textColor="?android:attr/textColorSecondaryInverse"
android:singleLine="true"
android:ellipsize="middle" />
<TextView
android:id="@+id/attachment_info"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/attachment_name"
android:layout_below="@id/attachment_name"
android:layout_alignWithParentIfMissing="true"
android:textAppearance="?android:attr/textAppearanceSmall"
android:textColor="?android:attr/textColorTertiaryInverse"
android:singleLine="true"
android:ellipsize="middle" />
<Button
android:id="@+id/load"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@id/attachment_name"
android:layout_marginTop="6dip"
style="?android:attr/buttonStyleSmall"
android:text="@string/message_view_attachment_load_action"
android:singleLine="true" />
<Button
android:id="@+id/cancel"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@id/attachment_name"
android:layout_marginTop="6dip"
style="?android:attr/buttonStyleSmall"
android:text="@string/message_view_attachment_cancel_action"
android:singleLine="true"
android:visibility="gone" />
<Button
android:id="@+id/save"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:layout_below="@id/attachment_name"
android:layout_marginTop="6dip"
style="?android:attr/buttonStyleSmall"
android:text="@string/message_view_attachment_save_action"
android:singleLine="true" />
<Button
android:id="@+id/view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_toLeftOf="@id/save"
android:layout_alignWithParentIfMissing="true"
android:layout_below="@id/attachment_name"
android:layout_marginTop="6dip"
style="?android:attr/buttonStyleSmall"
android:text="@string/message_view_attachment_view_action"
android:singleLine="true" />
<ProgressBar
android:id="@+id/progress"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignLeft="@id/attachment_name"
android:layout_below="@id/attachment_info"
android:layout_alignWithParentIfMissing="true"
android:layout_toLeftOf="@id/view"
android:layout_marginRight="2dip"
android:layout_weight="1"
style="?android:attr/progressBarStyleHorizontal"
android:max="100"
android:visibility="gone" />
</RelativeLayout>
</LinearLayout>
<LinearLayout
android:layout_width="wrap_content"
android:layout_height="match_parent"
android:layout_gravity="center_vertical">
<ImageView
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_alignParentLeft="true"
android:src="@drawable/ic_email_attachment" />
</LinearLayout>
</FrameLayout>