2011-08-16 00:38:22 +00:00
|
|
|
<?xml version="1.0" encoding="utf-8"?>
|
|
|
|
<!-- Copyright (C) 2011 The Android Open Source Project
|
|
|
|
|
|
|
|
Licensed under the Apache License, Version 2.0 (the "License");
|
|
|
|
you may not use this file except in compliance with the License.
|
|
|
|
You may obtain a copy of the License at
|
|
|
|
|
|
|
|
http://www.apache.org/licenses/LICENSE-2.0
|
|
|
|
|
|
|
|
Unless required by applicable law or agreed to in writing, software
|
|
|
|
distributed under the License is distributed on an "AS IS" BASIS,
|
|
|
|
WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
|
|
|
|
See the License for the specific language governing permissions and
|
|
|
|
limitations under the License.
|
|
|
|
-->
|
|
|
|
<!-- We must have unique ID's for the address fields in order to have the text
|
|
|
|
automatically saved by framework.-->
|
|
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
|
|
android:layout_height="wrap_content"
|
2011-08-19 18:07:55 +00:00
|
|
|
android:layout_width="match_parent">
|
2011-08-16 00:38:22 +00:00
|
|
|
|
2011-08-27 01:27:04 +00:00
|
|
|
<LinearLayout
|
2011-08-18 23:02:31 +00:00
|
|
|
style="@style/RecipientComposeFieldLayout"
|
2011-08-16 00:38:22 +00:00
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:id="@+id/to_content">
|
|
|
|
|
2011-09-26 16:49:23 +00:00
|
|
|
<LinearLayout android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:addStatesFromChildren="true"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:layout_gravity="center_vertical">
|
|
|
|
<TextView style="@style/RecipientComposeHeading"
|
|
|
|
android:text="@string/message_compose_to_hint"
|
|
|
|
android:id="@+id/label"/>
|
2011-08-16 00:38:22 +00:00
|
|
|
|
2011-09-26 16:49:23 +00:00
|
|
|
<com.android.email.activity.ChipsAddressTextView
|
2011-10-11 17:51:56 +00:00
|
|
|
style="@style/RecipientEditTextViewStyle"
|
2011-09-26 16:49:23 +00:00
|
|
|
android:id="@+id/to" />
|
|
|
|
</LinearLayout>
|
2011-08-16 00:38:22 +00:00
|
|
|
|
2011-09-26 16:49:23 +00:00
|
|
|
<View style="@style/RecipientComposeFieldSpacer"/>
|
2011-08-27 01:27:04 +00:00
|
|
|
</LinearLayout>
|
2011-09-26 16:49:23 +00:00
|
|
|
|
2011-08-16 00:38:22 +00:00
|
|
|
<LinearLayout
|
|
|
|
android:layout_below="@id/to_content"
|
|
|
|
android:id="@+id/cc_bcc_container"
|
|
|
|
android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:orientation="vertical"
|
|
|
|
android:visibility="gone">
|
|
|
|
|
2011-08-27 01:27:04 +00:00
|
|
|
<LinearLayout
|
2011-08-18 23:02:31 +00:00
|
|
|
style="@style/RecipientComposeFieldLayout"
|
2011-08-16 00:38:22 +00:00
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:id="@+id/cc_content">
|
2011-09-26 16:49:23 +00:00
|
|
|
<LinearLayout android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:addStatesFromChildren="true"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:layout_gravity="center_vertical">
|
|
|
|
<TextView style="@style/RecipientComposeHeading"
|
|
|
|
android:text="@string/message_compose_to_hint"
|
|
|
|
android:id="@+id/label"/>
|
|
|
|
|
|
|
|
<com.android.email.activity.ChipsAddressTextView
|
2011-10-11 17:51:56 +00:00
|
|
|
style="@style/RecipientEditTextViewStyle"
|
2011-09-26 16:49:23 +00:00
|
|
|
android:id="@+id/cc" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View style="@style/RecipientComposeFieldSpacer"/>
|
2011-08-27 01:27:04 +00:00
|
|
|
</LinearLayout>
|
2011-08-16 00:38:22 +00:00
|
|
|
|
2011-08-27 01:27:04 +00:00
|
|
|
<LinearLayout
|
2011-08-18 23:02:31 +00:00
|
|
|
style="@style/RecipientComposeFieldLayout"
|
2011-08-16 00:38:22 +00:00
|
|
|
android:layout_alignParentTop="true"
|
|
|
|
android:id="@+id/bcc_content">
|
2011-09-26 16:49:23 +00:00
|
|
|
<LinearLayout android:layout_width="match_parent"
|
|
|
|
android:layout_height="wrap_content"
|
|
|
|
android:addStatesFromChildren="true"
|
|
|
|
android:gravity="center_vertical"
|
|
|
|
android:layout_gravity="center_vertical">
|
|
|
|
<TextView style="@style/RecipientComposeHeading"
|
|
|
|
android:text="@string/message_compose_to_hint"
|
|
|
|
android:id="@+id/label"/>
|
|
|
|
|
|
|
|
<com.android.email.activity.ChipsAddressTextView
|
2011-10-11 17:51:56 +00:00
|
|
|
style="@style/RecipientEditTextViewStyle"
|
2011-09-26 16:49:23 +00:00
|
|
|
android:id="@+id/bcc" />
|
|
|
|
</LinearLayout>
|
|
|
|
|
|
|
|
<View style="@style/RecipientComposeFieldSpacer"/>
|
2011-08-27 01:27:04 +00:00
|
|
|
</LinearLayout>
|
2011-08-16 00:38:22 +00:00
|
|
|
|
|
|
|
</LinearLayout>
|
|
|
|
|
2011-08-24 01:02:11 +00:00
|
|
|
</RelativeLayout>
|