blob: 6e47e10d2f325c07b33bd7fb02d1d42822ee18f3 [file] [log] [blame]
Mindy Pereira02e4e6e2011-12-13 13:32:31 -08001<?xml version="1.0" encoding="utf-8"?>
Vikram Aggarwal5e5ac742011-12-19 08:14:16 -08002<!--
3 Copyright (C) 2011 Google Inc.
4 Licensed to The Android Open Source Project.
Mindy Pereira02e4e6e2011-12-13 13:32:31 -08005
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<!-- For add attachments and +cc/bcc -->
19<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
20 android:orientation="vertical"
21 android:layout_height="match_parent"
22 android:layout_width="wrap_content"
23 style="@style/ComposeButtonColumn">
24
25 <LinearLayout android:id="@+id/compose_buttons_spacer"
26 android:layout_height="0dip"
27 android:layout_width="match_parent"
28 android:layout_weight="1" />
29
Mindy Pereiraa26b54e2012-01-06 12:54:33 -080030 <Button android:id="@+id/add_cc_bcc"
Mindy Pereira02e4e6e2011-12-13 13:32:31 -080031 android:text="@string/plus_cc_label"
32 style="@style/ComposeButton"
33 android:layout_marginLeft="16dip" />
34
Mindy Pereira02e4e6e2011-12-13 13:32:31 -080035 <ImageView android:id="@+id/add_attachment"
36 android:text="@string/add_file_attachment"
37 android:layout_width="32dip"
38 android:layout_height="32dip"
39 android:src="@drawable/ic_attachment_holo_light"
40 android:clickable="true"
41 android:layout_gravity="center_vertical|left"
42 android:gravity="left"
43 android:layout_marginLeft="14dip" />
44
Vikram Aggarwal5e5ac742011-12-19 08:14:16 -080045</LinearLayout>