• Home
  • Line#
  • Scopes#
  • Navigate#
  • Raw
  • Download
1<?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"
22    android:layout_height="wrap_content"
23    android:layout_marginTop="24dp"
24    android:background="@android:color/white" >
25
26    <include layout="@layout/conversation_view_border" />
27
28    <LinearLayout
29        android:id="@+id/footer_buttons"
30        android:layout_width="match_parent"
31        android:layout_height="wrap_content"
32        android:layout_marginLeft="@dimen/conversation_border_margin_side"
33        android:layout_marginRight="@dimen/conversation_border_margin_side" >
34
35        <TextView
36            android:id="@+id/reply_button"
37            android:drawableTop="@drawable/ic_reply_24dp"
38            android:focusable="true"
39            android:text="@string/reply"
40            style="@style/ConversationFooterButtonStyle" />
41
42        <TextView
43            android:id="@+id/reply_all_button"
44            android:drawableTop="@drawable/ic_reply_all_24dp"
45            android:focusable="true"
46            android:text="@string/reply_all"
47            style="@style/ConversationFooterButtonStyle" />
48
49        <TextView
50            android:id="@+id/forward_button"
51            android:drawableTop="@drawable/ic_forward_24dp"
52            android:focusable="true"
53            android:text="@string/forward"
54            style="@style/ConversationFooterButtonStyle" />
55
56    </LinearLayout>
57
58    <Space
59        android:layout_width="match_parent"
60        android:layout_height="48dp" />
61
62</com.android.mail.browse.ConversationFooterView>
63