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
|
2011-01-10 21:35:47 +00:00
|
|
|
|
2009-03-04 03:32:22 +00:00
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
2011-01-10 21:35:47 +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.
|
|
|
|
-->
|
|
|
|
|
2011-04-06 00:02:13 +00:00
|
|
|
<!-- phone -->
|
|
|
|
<!--
|
|
|
|
TODO Remove the default visibility and always set them from code.
|
|
|
|
-->
|
2011-01-10 21:35:47 +00:00
|
|
|
|
2011-04-06 00:02:13 +00:00
|
|
|
<LinearLayout
|
2009-03-04 03:32:22 +00:00
|
|
|
xmlns:android="http://schemas.android.com/apk/res/android"
|
2010-01-08 23:06:52 +00:00
|
|
|
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:orientation="horizontal"
|
|
|
|
>
|
|
|
|
<ImageView
|
|
|
|
android:id="@+id/attachment_icon"
|
|
|
|
android:layout_width="64dip"
|
|
|
|
android:layout_height="64dip"
|
|
|
|
android:src="@drawable/attached_image_placeholder"
|
|
|
|
/>
|
2009-03-04 03:32:22 +00:00
|
|
|
<LinearLayout
|
2010-01-08 23:06:52 +00:00
|
|
|
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:orientation="vertical"
|
|
|
|
>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/attachment_name"
|
2010-01-08 23:06:52 +00:00
|
|
|
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:textAppearance="?android:attr/textAppearanceMedium"
|
|
|
|
android:textColor="?android:attr/textColorSecondaryInverse"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="middle"
|
|
|
|
/>
|
|
|
|
<TextView
|
|
|
|
android:id="@+id/attachment_info"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:textAppearance="?android:attr/textAppearanceSmall"
|
|
|
|
android:textColor="?android:attr/textColorTertiaryInverse"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:ellipsize="middle"
|
|
|
|
/>
|
|
|
|
<ProgressBar
|
|
|
|
android:id="@+id/progress"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
style="?android:attr/progressBarStyleHorizontal"
|
|
|
|
android:max="100"
|
|
|
|
android:visibility="invisible"
|
|
|
|
/>
|
|
|
|
<LinearLayout
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="horizontal"
|
|
|
|
>
|
2010-08-10 00:48:53 +00:00
|
|
|
<Button
|
|
|
|
android:id="@+id/load"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:layout_width="0dip"
|
2010-08-10 00:48:53 +00:00
|
|
|
android:layout_height="wrap_content"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:layout_weight="1"
|
2010-08-10 00:48:53 +00:00
|
|
|
android:text="@string/message_view_attachment_load_action"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:singleLine="true"
|
|
|
|
android:visibility="gone"
|
|
|
|
/>
|
2009-03-04 03:32:22 +00:00
|
|
|
<Button
|
2010-08-10 00:48:53 +00:00
|
|
|
android:id="@+id/cancel"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:layout_width="0dip"
|
2009-03-04 03:32:22 +00:00
|
|
|
android:layout_height="wrap_content"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:layout_weight="1"
|
2010-08-10 00:48:53 +00:00
|
|
|
android:text="@string/message_view_attachment_cancel_action"
|
2009-03-04 03:32:22 +00:00
|
|
|
android:singleLine="true"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:visibility="gone"
|
|
|
|
/>
|
|
|
|
<Button
|
|
|
|
android:id="@+id/info"
|
|
|
|
android:layout_width="0dip"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_weight="1"
|
|
|
|
android:text="@string/message_view_attachment_info_action"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:visibility="gone"
|
|
|
|
/>
|
2010-08-10 00:48:53 +00:00
|
|
|
<Button
|
|
|
|
android:id="@+id/save"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:layout_width="0dip"
|
2010-08-10 00:48:53 +00:00
|
|
|
android:layout_height="wrap_content"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:layout_weight="1"
|
2010-08-10 00:48:53 +00:00
|
|
|
android:text="@string/message_view_attachment_save_action"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:singleLine="true"
|
|
|
|
android:visibility="gone"
|
|
|
|
/>
|
2009-03-04 03:32:22 +00:00
|
|
|
<Button
|
2011-04-06 00:02:13 +00:00
|
|
|
android:id="@+id/open"
|
|
|
|
android:layout_width="0dip"
|
2009-03-04 03:32:22 +00:00
|
|
|
android:layout_height="wrap_content"
|
2010-08-10 00:48:53 +00:00
|
|
|
android:layout_weight="1"
|
2011-04-06 00:02:13 +00:00
|
|
|
android:text="@string/message_view_attachment_view_action"
|
|
|
|
android:singleLine="true"
|
|
|
|
android:visibility="gone"
|
|
|
|
/>
|
|
|
|
</LinearLayout>
|
2009-03-04 03:32:22 +00:00
|
|
|
</LinearLayout>
|
2011-04-06 00:02:13 +00:00
|
|
|
</LinearLayout>
|