1 <?xml version="1.0" encoding="utf-8"?> 2 <!-- 3 Copyright (C) 2011 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 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" 19 android:layout_width="match_parent" 20 android:layout_height="wrap_content" 21 android:orientation="vertical"> 22 23 <LinearLayout 24 android:id="@+id/cc_content" 25 android:alpha="0" 26 android:visibility="gone" 27 style="@style/RecipientComposeFieldLayout"> 28 29 <LinearLayout 30 android:id="@+id/cc_dropdown_anchor" 31 android:layout_width="match_parent" 32 android:layout_height="wrap_content" 33 style="@style/ComposeFieldContent"> 34 35 <TextView 36 android:contentDescription="@string/cc" 37 android:text="@string/cc" 38 style="@style/ComposeHeading" /> 39 40 <com.android.ex.chips.RecipientEditTextView 41 android:id="@+id/cc" 42 android:contentDescription="@string/cc" 43 android:dropDownAnchor="@id/cc_dropdown_anchor" 44 style="@style/RecipientEditTextViewStyle" /> 45 46 </LinearLayout> 47 48 <View style="@style/DefaultDividerStyle" /> 49 50 </LinearLayout> 51 52 <LinearLayout 53 android:id="@+id/bcc_content" 54 android:alpha="0" 55 android:visibility="gone" 56 style="@style/RecipientComposeFieldLayout"> 57 58 <LinearLayout 59 android:id="@+id/bcc_dropdown_anchor" 60 android:layout_width="match_parent" 61 android:layout_height="wrap_content" 62 style="@style/ComposeFieldContent"> 63 64 <TextView 65 android:contentDescription="@string/bcc" 66 android:text="@string/bcc" 67 style="@style/ComposeHeading" /> 68 69 <com.android.ex.chips.RecipientEditTextView 70 android:id="@+id/bcc" 71 android:contentDescription="@string/bcc" 72 android:dropDownAnchor="@id/bcc_dropdown_anchor" 73 style="@style/RecipientEditTextViewStyle" /> 74 75 </LinearLayout> 76 77 <View style="@style/DefaultDividerStyle" /> 78 79 </LinearLayout> 80 81 </LinearLayout> 82