replicant-packages_apps_Email/res/values-xlarge/styles.xml
Todd Kennedy 285fac8554 Replace private divider with framework divider
The framework defines ?android:attr/dividerHorizontal. Instead of defining our
own divider by specifying some arbitrary RGB colour, utilize the framework's
divider.

bug 3335145

Change-Id: I64dd30a5a73b0884f82f6a2b9fbbd88c6782e0db
2011-01-10 13:16:10 -08:00

113 lines
5.2 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.
-->
<!-- Specializations for xlarge screens - most colors are in values/colors.xml -->
<resources>
<!-- The headline at the top of every account settings fragments (in preferences) -->
<style name="accountSettingsHeadline">
<item name="android:textAppearance">?android:attr/textAppearanceMedium</item>
</style>
<!-- The large headline at the top of every account setup screen -->
<style name="accountSetupHeadline">
<item name="android:textSize">30sp</item>
<item name="android:textColor">@color/account_setup_headline_color</item>
</style>
<!-- Info text in any account setup screen -->
<style name="accountSetupInfoText">
<item name="android:textSize">18sp</item>
<item name="android:textColor">@color/account_setup_info_text_color</item>
</style>
<!-- Item labels in any account setup screen -->
<style name="accountSetupLabelText">
<item name="android:textSize">14sp</item>
<item name="android:textColor">@color/account_setup_label_text_color</item>
</style>
<!-- Wizard buttons on the account setup screens -->
<style name="accountSetupButton">
<item name="android:layout_width">208sp</item>
<item name="android:layout_height">48sp</item>
<item name="android:textSize">18sp</item>
</style>
<!-- Cancel/Done buttons on the account settings (server settings) fragments -->
<style name="accountSettingsButton">
<item name="android:layout_width">208sp</item>
<item name="android:layout_height">48sp</item>
<item name="android:textSize">18sp</item>
</style>
<!-- Message view -->
<style name="message_view_horizontal_divider">
<item name="android:layout_height">1dip</item>
<item name="android:background">?android:attr/dividerHorizontal</item>
</style>
<!-- Message compose STOPSHIP not final -->
<style name="message_compose_horizontal_divider">
<item name="android:layout_height">wrap_content</item>
<item name="android:background">?android:attr/dividerHorizontal</item>
</style>
<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_gravity">center_vertical</item>
<item name="android:orientation">horizontal</item>
</style>
<style name="message_compose_header_field_container" parent="android:Widget.Holo.Light.EditText">
<item name="android:layout_width">match_parent</item>
<item name="android:layout_height">48dip</item>
<item name="android:layout_gravity">center_vertical</item>
<item name="android:paddingTop">0dip</item>
<item name="android:paddingBottom">0dip</item>
<item name="android:paddingLeft">0dip</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">48dip</item>
<item name="android:layout_weight">0</item>
<item name="android:gravity">center_vertical</item>
<item name="android:paddingTop">0dip</item>
<item name="android:paddingBottom">0dip</item>
<item name="android:paddingLeft">16dip</item>
<item name="android:paddingRight">16dip</item>
<item name="android:ellipsize">end</item>
<item name="android:singleLine">true</item>
<item name="android:textSize">18dip</item>
<item name="android:textColor">@color/text_secondary_color</item>
</style>
<style name="message_compose_header_field_value" parent="PlainEditText">
<item name="android:layout_width">0dip</item>
<item name="android:layout_height">48dip</item>
<item name="android:layout_weight">1</item>
<item name="android:gravity">center_vertical</item>
<item name="android:paddingTop">0dip</item>
<item name="android:paddingBottom">0dip</item>
<item name="android:paddingLeft">0dip</item>
<item name="android:paddingRight">0dip</item>
<item name="android:textSize">18dip</item>
<item name="android:textColor">@color/text_primary_color</item>
<item name="android:singleLine">true</item>
</style>
</resources>