Skip to content

Commit

Permalink
Update support libs to 22.2.1
Browse files Browse the repository at this point in the history
Change-Id: I06ae7723ae180e2f444183126500b53a1cae8207
  • Loading branch information
Raj Yengisetty committed Aug 4, 2015
1 parent 3f3f929 commit a88269c
Show file tree
Hide file tree
Showing 11 changed files with 51 additions and 7 deletions.
Binary file modified appcompat/android-support-v4.jar
Binary file not shown.
Binary file modified appcompat/android-support-v7-appcompat.jar
Binary file not shown.
2 changes: 2 additions & 0 deletions appcompat/res/values-v21/styles_base.xml
Expand Up @@ -174,6 +174,8 @@

<style name="Base.Widget.AppCompat.AutoCompleteTextView" parent="android:Widget.Material.AutoCompleteTextView" />

<style name="Base.Widget.AppCompat.EditText" parent="android:Widget.Material.EditText" />

<style name="Base.Widget.AppCompat.RatingBar" parent="android:Widget.Material.RatingBar" />

<style name="Base.Widget.AppCompat.Button" parent="android:Widget.Material.Button" />
Expand Down
4 changes: 1 addition & 3 deletions appcompat/res/values/styles.xml
Expand Up @@ -194,9 +194,7 @@
<style name="Widget.AppCompat.SearchView" parent="Base.Widget.AppCompat.SearchView" />
<style name="Widget.AppCompat.SearchView.ActionBar" parent="Base.Widget.AppCompat.SearchView.ActionBar" />

<style name="Widget.AppCompat.EditText"
parent="Base.Widget.AppCompat.EditText">
</style>
<style name="Widget.AppCompat.EditText" parent="Base.Widget.AppCompat.EditText"/>

<style name="Widget.AppCompat.CompoundButton.Switch" parent="Base.Widget.AppCompat.CompoundButton.Switch" />

Expand Down
2 changes: 1 addition & 1 deletion appcompat/res/values/themes_base.xml
Expand Up @@ -571,7 +571,7 @@
<item name="isLightTheme">true</item>
</style>

<style name="Base.ThemeOverlay.AppCompat.Dark">
<style name="Base.ThemeOverlay.AppCompat.Dark" parent="Platform.ThemeOverlay.AppCompat.Dark">
<item name="android:windowBackground">@color/background_material_dark</item>
<item name="android:colorForeground">@color/bright_foreground_material_dark</item>
<item name="android:colorForegroundInverse">@color/bright_foreground_material_light</item>
Expand Down
Binary file modified support-design/android-support-design.jar
Binary file not shown.
2 changes: 1 addition & 1 deletion support-design/res/layout-sw600dp/layout_snackbar.xml
Expand Up @@ -19,5 +19,5 @@
class="android.support.design.widget.Snackbar$SnackbarLayout"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="bottom|center_vertical"
android:layout_gravity="bottom|center_horizontal"
style="@style/Widget.Design.Snackbar" />
2 changes: 1 addition & 1 deletion support-design/res/layout/design_navigation_item.xml
Expand Up @@ -23,4 +23,4 @@
android:drawablePadding="@dimen/navigation_icon_padding"
android:gravity="center_vertical|start"
android:maxLines="1"
android:textAppearance="?attr/textAppearanceListItem"/>
android:textAppearance="@style/TextAppearance.AppCompat.Body2"/>
Expand Up @@ -21,5 +21,5 @@
android:maxLines="1"
android:paddingLeft="?attr/listPreferredItemPaddingLeft"
android:paddingRight="?attr/listPreferredItemPaddingRight"
android:textAppearance="?attr/textAppearanceListItem"
android:textAppearance="@style/TextAppearance.AppCompat.Body2"
android:textColor="?android:textColorSecondary"/>
21 changes: 21 additions & 0 deletions support-design/res/layout/layout_tab_icon.xml
@@ -0,0 +1,21 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2015 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.
-->

<ImageView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center"/>
23 changes: 23 additions & 0 deletions support-design/res/layout/layout_tab_text.xml
@@ -0,0 +1,23 @@
<?xml version="1.0" encoding="utf-8"?>
<!--
~ Copyright (C) 2015 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.
-->

<TextView xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:ellipsize="end"
android:gravity="center"
android:maxLines="2"/>

0 comments on commit a88269c

Please sign in to comment.