1b6e1ae306
Part of fixes for b/5517524 compose on tablets needs redlines Change-Id: I7b526c21f1a11532b8b0d598a309174bb38a9cf6
43 lines
1.7 KiB
XML
43 lines
1.7 KiB
XML
<?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.
|
|
-->
|
|
<!-- For add attachments and +cc/bcc -->
|
|
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
|
|
android:orientation="vertical"
|
|
android:layout_height="match_parent"
|
|
android:layout_width="wrap_content"
|
|
style="@style/ComposeButtonColumn">
|
|
|
|
<LinearLayout android:id="@+id/compose_buttons_spacer"
|
|
android:layout_height="0dip"
|
|
android:layout_width="match_parent"
|
|
android:layout_weight="1" />
|
|
|
|
<Button android:id="@+id/add_cc_bcc"
|
|
android:text="@string/plus_cc_label"
|
|
style="@style/ComposeButton"
|
|
android:layout_marginLeft="16dip" />
|
|
|
|
<ImageView android:id="@+id/add_attachment"
|
|
android:text="@string/add_file_attachment"
|
|
android:layout_width="32dip"
|
|
android:layout_height="32dip"
|
|
android:src="@drawable/ic_attachment_holo_light"
|
|
android:clickable="true"
|
|
android:layout_gravity="center_vertical|left"
|
|
android:gravity="left"
|
|
android:layout_marginLeft="14dip" />
|
|
|
|
</LinearLayout> |