4cd64ad4d5
Fixes for b/5517524 compose on tablets needs redlines Change-Id: I8a7fab7ad635deee9ddb23f59ea2caf0848f496d
63 lines
2.5 KiB
XML
63 lines
2.5 KiB
XML
<?xml version="1.0" encoding="utf-8"?>
|
|
<!-- Copyright (C) 2010 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.
|
|
-->
|
|
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:id="@+id/quoted_text_area"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="match_parent">
|
|
|
|
<RelativeLayout android:layout_width="match_parent"
|
|
android:layout_height="48dip"
|
|
android:id="@+id/quoted_text_bar">
|
|
|
|
<RelativeLayout android:layout_width="wrap_content"
|
|
android:layout_height="match_parent"
|
|
android:id="@+id/quoted_text_row"
|
|
android:layout_alignParentLeft="true">
|
|
|
|
<CheckBox android:id="@+id/include_quoted_text"
|
|
android:layout_height="match_parent"
|
|
android:layout_width="wrap_content"
|
|
android:layout_alignParentLeft="true"
|
|
android:gravity="center_vertical"
|
|
android:contentDescription="@string/message_compose_quoted_text_label"/>
|
|
|
|
<TextView
|
|
android:text="@string/message_compose_quoted_text_label"
|
|
android:textAllCaps="true"
|
|
android:layout_height="match_parent"
|
|
android:layout_width="wrap_content"
|
|
android:layout_marginLeft="8dip"
|
|
style="@style/QuotedTextHeaderStyle"
|
|
android:layout_toRightOf="@+id/include_quoted_text"
|
|
android:gravity="center_vertical|left"/>
|
|
</RelativeLayout>
|
|
|
|
</RelativeLayout>
|
|
|
|
<View
|
|
android:layout_width="match_parent"
|
|
android:layout_height="2dip"
|
|
android:background="#babebe"
|
|
android:layout_below="@id/quoted_text_bar"
|
|
android:id="@+id/divider_bar" />
|
|
|
|
<WebView android:id="@+id/quoted_text"
|
|
android:layout_height="wrap_content"
|
|
android:layout_width="match_parent"
|
|
android:layout_below="@id/divider_bar" />
|
|
|
|
</RelativeLayout>
|