blob: 0306216d364f63fcc34e52adbc0962ac13c14b3b [file] [log] [blame]
Andrew Sappersteine2a30e12014-07-02 22:36:56 -07001<?xml version="1.0" encoding="utf-8"?>
2<!--
3 Copyright (C) 2014 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-->
18<com.android.mail.browse.ConversationFooterView
19 xmlns:android="http://schemas.android.com/apk/res/android"
20 android:orientation="vertical"
21 android:layout_width="match_parent"
Andrew Sapperstein27230d62014-09-11 14:23:18 -070022 android:layout_height="wrap_content"
23 android:layout_marginTop="24dp" >
Andrew Sappersteine2a30e12014-07-02 22:36:56 -070024
Andrew Sapperstein7dc32fd2014-08-04 18:06:53 -070025 <include layout="@layout/conversation_view_border" />
Andrew Sappersteine2a30e12014-07-02 22:36:56 -070026
27 <LinearLayout
Andrew Sapperstein735a22a2014-07-11 03:57:42 -070028 android:id="@+id/footer_buttons"
Andrew Sappersteine2a30e12014-07-02 22:36:56 -070029 android:layout_width="match_parent"
Andrew Sapperstein7dc32fd2014-08-04 18:06:53 -070030 android:layout_height="wrap_content"
31 android:layout_marginLeft="@dimen/conversation_border_margin_side"
32 android:layout_marginRight="@dimen/conversation_border_margin_side" >
Andrew Sappersteine2a30e12014-07-02 22:36:56 -070033
34 <TextView
35 android:id="@+id/reply_button"
Andrew Sapperstein69a94ae2014-07-03 19:01:21 -070036 android:drawableTop="@drawable/ic_reply_24dp"
Jin Caoa7404582014-08-05 14:03:59 -070037 android:focusable="true"
Andrew Sappersteine2a30e12014-07-02 22:36:56 -070038 android:text="@string/reply"
39 style="@style/ConversationFooterButtonStyle" />
40
41 <TextView
42 android:id="@+id/reply_all_button"
Andrew Sapperstein69a94ae2014-07-03 19:01:21 -070043 android:drawableTop="@drawable/ic_reply_all_24dp"
Jin Caoa7404582014-08-05 14:03:59 -070044 android:focusable="true"
Andrew Sappersteine2a30e12014-07-02 22:36:56 -070045 android:text="@string/reply_all"
46 style="@style/ConversationFooterButtonStyle" />
47
48 <TextView
49 android:id="@+id/forward_button"
Andrew Sapperstein69a94ae2014-07-03 19:01:21 -070050 android:drawableTop="@drawable/ic_forward_24dp"
Jin Caoa7404582014-08-05 14:03:59 -070051 android:focusable="true"
Andrew Sappersteine2a30e12014-07-02 22:36:56 -070052 android:text="@string/forward"
53 style="@style/ConversationFooterButtonStyle" />
54
55 </LinearLayout>
56
57 <View
58 android:layout_width="match_parent"
Andrew Sapperstein27230d62014-09-11 14:23:18 -070059 android:layout_height="48dp"
Andrew Sapperstein7dc32fd2014-08-04 18:06:53 -070060 android:background="@color/conversation_view_item_background_color" />
Andrew Sappersteine2a30e12014-07-02 22:36:56 -070061
62</com.android.mail.browse.ConversationFooterView>