Merge "Add spinner style for use in forms" into lmp-dev

This commit is contained in:
Alan Viverette
2014-08-16 01:11:42 +00:00
committed by Android (Google) Code Review
14 changed files with 51 additions and 21 deletions

View File

@@ -2558,6 +2558,7 @@ package android {
field public static final int Widget_Material_Light_SeekBar = 16974534; // 0x10302c6
field public static final int Widget_Material_Light_SegmentedButton = 16974535; // 0x10302c7
field public static final int Widget_Material_Light_Spinner = 16974537; // 0x10302c9
field public static final int Widget_Material_Light_Spinner_Form = 16974567; // 0x10302e7
field public static final int Widget_Material_Light_StackView = 16974536; // 0x10302c8
field public static final int Widget_Material_Light_Tab = 16974538; // 0x10302ca
field public static final int Widget_Material_Light_TabWidget = 16974539; // 0x10302cb
@@ -2584,6 +2585,7 @@ package android {
field public static final int Widget_Material_SeekBar = 16974471; // 0x1030287
field public static final int Widget_Material_SegmentedButton = 16974472; // 0x1030288
field public static final int Widget_Material_Spinner = 16974474; // 0x103028a
field public static final int Widget_Material_Spinner_Form = 16974566; // 0x10302e6
field public static final int Widget_Material_StackView = 16974473; // 0x1030289
field public static final int Widget_Material_Tab = 16974475; // 0x103028b
field public static final int Widget_Material_TabWidget = 16974476; // 0x103028c

Binary file not shown.

After

Width:  |  Height:  |  Size: 590 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 588 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 449 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 445 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 703 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 692 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 984 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 973 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

Binary file not shown.

After

Width:  |  Height:  |  Size: 1.7 KiB

View File

@@ -0,0 +1,31 @@
<?xml version="1.0" encoding="utf-8"?>
<!-- Copyright (C) 2014 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.
-->
<selector xmlns:android="http://schemas.android.com/apk/res/android"
android:autoMirrored="true">
<item android:state_checked="true">
<nine-patch android:src="@drawable/spinner_textfield_activated_mtrl_alpha"
android:tint="?attr/colorControlActivated" />
</item>
<item android:state_pressed="true">
<nine-patch android:src="@drawable/spinner_textfield_activated_mtrl_alpha"
android:tint="?attr/colorControlActivated" />
</item>
<item>
<nine-patch android:src="@drawable/spinner_textfield_default_mtrl_alpha"
android:tint="?attr/colorControlNormal" />
</item>
</selector>

View File

@@ -2518,6 +2518,19 @@
<public type="style" name="Widget.Material.Button.Borderless.Colored" />
<public type="style" name="Widget.Material.Light.Button.Borderless.Colored" />
<public type="style" name="Theme.Leanback.FormWizard"/>
<public type="style" name="TextAppearance.StatusBar.Material" />
<public type="style" name="TextAppearance.StatusBar.Material.EventContent" />
<public type="style" name="TextAppearance.StatusBar.Material.EventContent.Title" />
<public type="style" name="TextAppearance.StatusBar.Material.EventContent.Line2" />
<public type="style" name="TextAppearance.StatusBar.Material.EventContent.Info" />
<public type="style" name="TextAppearance.StatusBar.Material.EventContent.Time" />
<public type="style" name="TextAppearance.StatusBar.Material.EventContent.Emphasis" />
<public type="style" name="Widget.Material.Spinner.Form" />
<public type="style" name="Widget.Material.Light.Spinner.Form" />
<public-padding type="string" name="l_resource_pad" end="0x01040030" />
<public type="string" name="config_webSettingsDefaultTextEncoding" />
@@ -2528,8 +2541,6 @@
<public-padding type="interpolator" name="l_resource_pad" end="0x010c0010" />
<public type="style" name="Theme.Leanback.FormWizard"/>
<!-- An interpolator which accelerates fast but decelerates slowly. -->
<public type="interpolator" name="fast_out_slow_in" />
<!-- An interpolator which starts with a peak non-zero velocity and decelerates slowly. -->
@@ -2564,23 +2575,4 @@
<public type="raw" name="loaderror" id="0x01100000"/>
<!-- WebView error page for when domain lookup fails. @hide @SystemApi -->
<public type="raw" name="nodomain"/>
<!-- Base text appearance for SystemUI elements -->
<public type="style" name="TextAppearance.StatusBar.Material" />
<!-- Base text appearance for notifications -->
<public type="style" name="TextAppearance.StatusBar.Material.EventContent" />
<!-- Notification text appearance: title -->
<public type="style" name="TextAppearance.StatusBar.Material.EventContent.Title" />
<!-- Notification text appearance: additional line of text sandwiched
between the title and content -->
<public type="style" name="TextAppearance.StatusBar.Material.EventContent.Line2" />
<!-- Notification text appearance: an annotation, e.g. the
number of messages in your inbox -->
<public type="style" name="TextAppearance.StatusBar.Material.EventContent.Info" />
<!-- Notification text appearance: timestamp -->
<public type="style" name="TextAppearance.StatusBar.Material.EventContent.Time" />
<!-- Notification text appearance: a way to highlight a bit of text (for
example, to separate the sender from the subject of an email if they
are all on the same line) -->
<public type="style" name="TextAppearance.StatusBar.Material.EventContent.Emphasis" />
</resources>

View File

@@ -727,6 +727,10 @@ please see styles_device_defaults.xml.
<item name="overlapAnchor">true</item>
</style>
<style name="Widget.Material.Spinner.Form">
<item name="background">@drawable/spinner_textfield_background_material</item>
</style>
<style name="Widget.Material.TabWidget" parent="Widget.TabWidget">
<item name="tabStripLeft">@null</item>
<item name="tabStripRight">@null</item>
@@ -976,6 +980,7 @@ please see styles_device_defaults.xml.
<style name="Widget.Material.Light.Spinner" parent="Widget.Material.Spinner" />
<style name="Widget.Material.Light.Spinner.DropDown" parent="Widget.Material.Spinner.DropDown"/>
<style name="Widget.Material.Light.Spinner.DropDown.ActionBar" parent="Widget.Material.Spinner.DropDown.ActionBar"/>
<style name="Widget.Material.Light.Spinner.Form" parent="Widget.Material.Spinner.Form" />
<style name="Widget.Material.Light.TabWidget" parent="Widget.Material.TabWidget"/>
<style name="Widget.Material.Light.WebTextView" parent="Widget.Material.WebTextView"/>
<style name="Widget.Material.Light.WebView" parent="Widget.Material.WebView"/>