blob: 5681cb129cbac4764bb9218b40ac27e17db99e4c [file] [log] [blame]
Mindy Pereira8e9305e2011-12-13 14:25:04 -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 Pereira8e9305e2011-12-13 14:25:04 -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<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
19 android:layout_height="wrap_content"
20 android:layout_width="match_parent">
21
22 <LinearLayout style="@style/RecipientComposeFieldLayout"
23 android:id="@+id/cc_content"
24 android:visibility="gone"
25 android:alpha="0"
26 android:layout_alignParentTop="true">
27
28 <LinearLayout android:layout_width="match_parent"
29 android:layout_height="wrap_content"
30 android:addStatesFromChildren="true"
31 android:gravity="center_vertical">
32
33 <TextView
34 style="@style/RecipientComposeHeading"
35 android:text="@string/cc"
36 android:id="@+id/cc_label"
37 android:contentDescription="@string/cc"/>
38
39 <com.android.ex.chips.RecipientEditTextView
40 android:id="@+id/cc"
41 style="@style/RecipientEditTextViewStyle"/>
42 </LinearLayout>
43
44 <View style="@style/RecipientComposeFieldSpacer"/>
45 </LinearLayout>
46
47 <LinearLayout style="@style/RecipientComposeFieldLayout"
48 android:id="@+id/bcc_content"
49 android:visibility="gone"
50 android:alpha="0"
51 android:layout_below="@id/cc_content">
52
53 <LinearLayout android:layout_width="match_parent"
54 android:layout_height="wrap_content"
55 android:addStatesFromChildren="true"
56 android:gravity="center_vertical">
57
58 <TextView style="@style/RecipientComposeHeading"
59 android:text="@string/bcc"
60 android:id="@+id/bcc_label"
61 android:contentDescription="@string/bcc"/>
62
63 <com.android.ex.chips.RecipientEditTextView
64 android:id="@+id/bcc"
65 style="@style/RecipientEditTextViewStyle"/>
66
67 </LinearLayout>
68
69 <View style="@style/RecipientComposeFieldSpacer"/>
70 </LinearLayout>
71
Vikram Aggarwal5e5ac742011-12-19 08:14:16 -080072</RelativeLayout>