blob: 7d3ac7c641016528e317e588ab2f1c3c53db7550 [file] [log] [blame]
Andy Huang88fc42e2012-03-08 15:02:43 -08001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2012 Google Inc.
4 Licensed to The Android Open Source Project.
5
6 Licensed under the Apache License, Version 2.0 (the "License");
7 you may not use this file except in compliance with the License.
8 You may obtain a copy of the License at
9
10 http://www.apache.org/licenses/LICENSE-2.0
11
12 Unless required by applicable law or agreed to in writing, software
13 distributed under the License is distributed on an "AS IS" BASIS,
14 WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
15 See the License for the specific language governing permissions and
16 limitations under the License.
17-->
Andy Huangf0e95c32012-04-02 18:11:17 -070018<com.android.mail.browse.MessageFooterView
19 xmlns:android="http://schemas.android.com/apk/res/android"
Andy Huang88fc42e2012-03-08 15:02:43 -080020 android:id="@+id/attachments"
21 android:layout_width="match_parent"
22 android:layout_height="wrap_content"
Andrew Sapperstein96062c32014-10-15 15:09:36 -070023 android:background="@android:color/white"
Jin Caoa7404582014-08-05 14:03:59 -070024 android:orientation="vertical">
Andrew Sappersteinf59d01c2014-02-20 10:27:06 -080025
26 <TextView
27 android:id="@+id/view_entire_message_prompt"
28 android:layout_width="match_parent"
29 android:layout_height="wrap_content"
30 android:background="?android:attr/selectableItemBackground"
Jin Caoa7404582014-08-05 14:03:59 -070031 android:focusable="true"
Andrew Sappersteinf59d01c2014-02-20 10:27:06 -080032 android:paddingTop="12dp"
33 android:paddingBottom="12dp"
Andrew Sappersteinf59d01c2014-02-20 10:27:06 -080034 android:text="@string/view_entire_message"
Andrew Sappersteinde40dd32014-06-30 21:12:16 -070035 android:textColor="@color/conversation_view_text_color_link_blue"
Andrew Sappersteinf59d01c2014-02-20 10:27:06 -080036 android:textSize="14sp"
Andrew Sapperstein6726e802014-08-08 11:54:33 -070037 android:visibility="gone"
38 style="@style/AttachmentPaddingStyle" />
Andrew Sappersteinf59d01c2014-02-20 10:27:06 -080039
Andrew Sapperstein237129d2012-06-15 11:46:30 -070040 <com.android.mail.ui.AttachmentTileGrid
Andrew Sappersteine4798f52012-06-05 15:08:33 -070041 android:id="@+id/attachment_tile_grid"
42 android:layout_width="match_parent"
43 android:layout_height="wrap_content"
Andrew Sappersteine0847072014-08-07 20:41:16 -070044 android:layout_marginBottom="4dp"
Andrew Sappersteine4798f52012-06-05 15:08:33 -070045 android:visibility="gone"
Andrew Sappersteinca4f9472013-09-18 17:40:56 -070046 style="@style/AttachmentMarginStyle" />
Andrew Sappersteinf59d01c2014-02-20 10:27:06 -080047
Andrew Sapperstein4aa1c132012-06-08 17:53:41 -070048 <LinearLayout
49 android:id="@+id/attachment_bar_list"
50 android:layout_width="match_parent"
51 android:layout_height="wrap_content"
52 android:visibility="gone"
Andrew Sappersteinca4f9472013-09-18 17:40:56 -070053 android:orientation="vertical"
Andrew Sapperstein6726e802014-08-08 11:54:33 -070054 style="@style/AttachmentPaddingStyle" />
Andrew Sapperstein14f93742013-07-25 14:29:56 -070055
Andy Huangf0e95c32012-04-02 18:11:17 -070056</com.android.mail.browse.MessageFooterView>