15f46cc715
The layout is not final, but it's closer to the wireframe. - All dimensions and colors are not final. I just made them up. - The "+cc/bcc" and "add attachment" buttons are in the wrong position. I'll wait for the pixel perfect before addressing them. Bug 3138037 Change-Id: I72fc7557c28e72df08a3751c3c93acfb35749d68
88 lines
4.3 KiB
XML
88 lines
4.3 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.
|
|
-->
|
|
|
|
<!-- STOPSHIP need final styles for all of account_setup_* -->
|
|
<!-- Specializations for xlarge screens - most colors are in values/colors.xml -->
|
|
<resources>
|
|
<!-- The large headline at the top of every account setup screen -->
|
|
<style name="accountSetupHeadline">
|
|
<item name="android:textSize">28sp</item>
|
|
<item name="android:textColor">@color/account_setup_headline_color</item>
|
|
</style>
|
|
|
|
<!-- Wizard buttons on the account setup screens -->
|
|
<style name="accountSetupButton">
|
|
<item name="android:layout_width">240sp</item>
|
|
<item name="android:layout_height">70sp</item>
|
|
<item name="android:textSize">24sp</item>
|
|
</style>
|
|
|
|
<!-- Message compose STOPSHIP not final -->
|
|
<style name="message_compose_header_field_container_no_tray" parent="PlainEditText">
|
|
<item name="android:layout_width">match_parent</item>
|
|
<item name="android:layout_height">wrap_content</item>
|
|
<item name="android:layout_marginTop">16dip</item>
|
|
<item name="android:layout_marginLeft">16dip</item>
|
|
<item name="android:layout_marginRight">4dip</item>
|
|
<item name="android:orientation">horizontal</item>
|
|
</style>
|
|
<style name="message_compose_header_field_container" parent="android:Widget.EditText">
|
|
<item name="android:layout_width">match_parent</item>
|
|
<item name="android:layout_height">wrap_content</item>
|
|
<item name="android:layout_marginTop">16dip</item>
|
|
<item name="android:layout_marginLeft">16dip</item>
|
|
<item name="android:layout_marginRight">4dip</item>
|
|
<item name="android:orientation">horizontal</item>
|
|
<item name="android:addStatesFromChildren">true</item>
|
|
<item name="android:focusable">false</item>
|
|
<item name="android:focusableInTouchMode">false</item>
|
|
</style>
|
|
<style name="message_compose_header_field_label">
|
|
<item name="android:layout_width">@dimen/message_compose_field_label_width</item>
|
|
<item name="android:layout_height">wrap_content</item>
|
|
<item name="android:layout_weight">0</item>
|
|
<item name="android:ellipsize">end</item>
|
|
<item name="android:singleLine">true</item>
|
|
<item name="android:textAppearance">?android:attr/textAppearanceMedium</item>
|
|
<item name="android:textColor">?android:attr/textColorSecondary</item>
|
|
</style>
|
|
<style name="message_compose_header_field_value" parent="PlainEditText">
|
|
<item name="android:layout_width">0dip</item>
|
|
<item name="android:layout_height">wrap_content</item>
|
|
<item name="android:layout_weight">1</item>
|
|
<item name="android:textAppearance">?android:attr/textAppearanceMedium</item>
|
|
<item name="android:textColor">?android:attr/textColorPrimary</item>
|
|
<item name="android:singleLine">true</item>
|
|
</style>
|
|
|
|
<style name="message_compose_message_content" parent="PlainEditText">
|
|
<item name="android:layout_width">match_parent</item>
|
|
<item name="android:layout_height">wrap_content</item>
|
|
<item name="android:layout_marginTop">16dip</item>
|
|
<item name="android:layout_marginBottom">16dip</item>
|
|
<item name="android:layout_marginLeft">16dip</item>
|
|
<item name="android:layout_marginRight">16dip</item>
|
|
<item name="android:textAppearance">?android:attr/textAppearanceMedium</item>
|
|
<item name="android:textColor">?android:attr/textColorPrimary</item>
|
|
</style>
|
|
<style name="message_compose_divider">
|
|
<item name="android:layout_width">match_parent</item>
|
|
<item name="android:layout_height">1dip</item>
|
|
<!-- STOPSHIP Use same color as EditText tray? -->
|
|
<item name="android:background">#ff808080</item>
|
|
</style>
|
|
</resources>
|