diff options
Diffstat (limited to 'current/support')
16 files changed, 45 insertions, 9 deletions
diff --git a/current/support/annotations/android-support-annotations.jar b/current/support/annotations/android-support-annotations.jar Binary files differindex 3309eb9..4afcf0d 100644 --- a/current/support/annotations/android-support-annotations.jar +++ b/current/support/annotations/android-support-annotations.jar diff --git a/current/support/multidex/instrumentation/libs/android-support-multidex-instrumentation.jar b/current/support/multidex/instrumentation/libs/android-support-multidex-instrumentation.jar Binary files differindex f68652b..111c658 100644 --- a/current/support/multidex/instrumentation/libs/android-support-multidex-instrumentation.jar +++ b/current/support/multidex/instrumentation/libs/android-support-multidex-instrumentation.jar diff --git a/current/support/multidex/library/libs/android-support-multidex.jar b/current/support/multidex/library/libs/android-support-multidex.jar Binary files differindex de97ee1..81201d5 100644 --- a/current/support/multidex/library/libs/android-support-multidex.jar +++ b/current/support/multidex/library/libs/android-support-multidex.jar diff --git a/current/support/v13/android-support-v13.jar b/current/support/v13/android-support-v13.jar Binary files differindex 90b003c..1856b1a 100644 --- a/current/support/v13/android-support-v13.jar +++ b/current/support/v13/android-support-v13.jar diff --git a/current/support/v17/leanback/libs/android-support-v17-leanback.jar b/current/support/v17/leanback/libs/android-support-v17-leanback.jar Binary files differindex 18fc3ad..dca5fe7 100644 --- a/current/support/v17/leanback/libs/android-support-v17-leanback.jar +++ b/current/support/v17/leanback/libs/android-support-v17-leanback.jar diff --git a/current/support/v17/leanback/res/drawable/lb_headers_right_fading.xml b/current/support/v17/leanback/res/drawable/lb_headers_right_fading.xml new file mode 100644 index 0000000..b20c4e8 --- /dev/null +++ b/current/support/v17/leanback/res/drawable/lb_headers_right_fading.xml @@ -0,0 +1,25 @@ +<?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. +--> + +<shape xmlns:android="http://schemas.android.com/apk/res/android" + android:shape="rectangle"> + <gradient + android:angle="0" + android:startColor="#00000000" + android:endColor="?attr/defaultBrandColor" + /> +</shape> diff --git a/current/support/v17/leanback/res/layout/lb_headers_fragment.xml b/current/support/v17/leanback/res/layout/lb_headers_fragment.xml index fbc3261..a621c0b 100644 --- a/current/support/v17/leanback/res/layout/lb_headers_fragment.xml +++ b/current/support/v17/leanback/res/layout/lb_headers_fragment.xml @@ -14,11 +14,23 @@ See the License for the specific language governing permissions and limitations under the License. --> -<android.support.v17.leanback.widget.VerticalGridView +<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" - xmlns:lb="http://schemas.android.com/apk/res-auto" - android:id="@+id/browse_headers" android:layout_width="@dimen/lb_browse_headers_width" android:layout_height="match_parent" + android:paddingRight="@dimen/lb_browse_header_padding_right" android:elevation="@dimen/lb_browse_headers_z" - style="?attr/headersVerticalGridStyle"/> + > + <android.support.v17.leanback.widget.VerticalGridView + android:id="@+id/browse_headers" + android:layout_width="@dimen/lb_browse_headers_width" + android:layout_height="match_parent" + style="?attr/headersVerticalGridStyle"/> + <View + android:id="@+id/fade_out_edge" + android:layout_alignParentRight="true" + android:layout_width="@dimen/lb_browse_header_fading_length" + android:layout_height="match_parent" + android:background="@drawable/lb_headers_right_fading" > + </View> +</RelativeLayout> diff --git a/current/support/v17/leanback/res/values/dimens.xml b/current/support/v17/leanback/res/values/dimens.xml index 248597d..c662f2a 100644 --- a/current/support/v17/leanback/res/values/dimens.xml +++ b/current/support/v17/leanback/res/values/dimens.xml @@ -42,8 +42,9 @@ <!-- Derived from the ux spec of 48dp baseline to baseline --> <dimen name="lb_browse_headers_vertical_margin">21dp</dimen> <dimen name="lb_browse_header_text_size">20sp</dimen> - <dimen name="lb_browse_header_padding_right">24dp</dimen> <dimen name="lb_browse_header_height">24dp</dimen> + <dimen name="lb_browse_header_fading_length">12dp</dimen> + <dimen name="lb_browse_header_padding_right">8dp</dimen> <item name="lb_browse_header_select_duration" format="integer" type="dimen">150</item> <item name="lb_browse_header_unselect_alpha" type="fraction">50%</item> @@ -151,7 +152,7 @@ <dimen name="lb_search_bar_items_layout_margin_top">27dp</dimen> <dimen name="lb_search_bar_items_width">600dp</dimen> <dimen name="lb_search_bar_items_height">56dp</dimen> - <dimen name="lb_search_bar_items_margin_left">56dp</dimen> + <dimen name="lb_search_bar_items_margin_left">70dp</dimen> <dimen name="lb_search_bar_icon_height">32dp</dimen> <dimen name="lb_search_bar_icon_width">32dp</dimen> <dimen name="lb_search_bar_icon_margin_left">16dp</dimen> diff --git a/current/support/v17/leanback/res/values/styles.xml b/current/support/v17/leanback/res/values/styles.xml index c683a6e..06f6a49 100644 --- a/current/support/v17/leanback/res/values/styles.xml +++ b/current/support/v17/leanback/res/values/styles.xml @@ -131,9 +131,7 @@ <item name="android:minHeight">@dimen/lb_browse_header_height</item> <item name="android:textAppearance">@style/TextAppearance.Leanback.Header</item> <item name="android:singleLine">true</item> - <item name="android:ellipsize">marquee</item> - <item name="android:marqueeRepeatLimit">0</item> - <item name="android:paddingRight">@dimen/lb_browse_header_padding_right</item> + <item name="android:ellipsize">none</item> </style> <style name="Widget.Leanback.Rows.VerticalGridView" > diff --git a/current/support/v4/android-support-v4.jar b/current/support/v4/android-support-v4.jar Binary files differindex 3333103..c7c06fc 100644 --- a/current/support/v4/android-support-v4.jar +++ b/current/support/v4/android-support-v4.jar diff --git a/current/support/v7/appcompat/libs/android-support-v7-appcompat.jar b/current/support/v7/appcompat/libs/android-support-v7-appcompat.jar Binary files differindex 737be5f..a623e51 100644 --- a/current/support/v7/appcompat/libs/android-support-v7-appcompat.jar +++ b/current/support/v7/appcompat/libs/android-support-v7-appcompat.jar diff --git a/current/support/v7/cardview/libs/android-support-v7-cardview.jar b/current/support/v7/cardview/libs/android-support-v7-cardview.jar Binary files differindex 7a272d2..a5d31c9 100644 --- a/current/support/v7/cardview/libs/android-support-v7-cardview.jar +++ b/current/support/v7/cardview/libs/android-support-v7-cardview.jar diff --git a/current/support/v7/gridlayout/libs/android-support-v7-gridlayout.jar b/current/support/v7/gridlayout/libs/android-support-v7-gridlayout.jar Binary files differindex 4220629..7faf523 100644 --- a/current/support/v7/gridlayout/libs/android-support-v7-gridlayout.jar +++ b/current/support/v7/gridlayout/libs/android-support-v7-gridlayout.jar diff --git a/current/support/v7/mediarouter/libs/android-support-v7-mediarouter.jar b/current/support/v7/mediarouter/libs/android-support-v7-mediarouter.jar Binary files differindex 2044211..36918ad 100644 --- a/current/support/v7/mediarouter/libs/android-support-v7-mediarouter.jar +++ b/current/support/v7/mediarouter/libs/android-support-v7-mediarouter.jar diff --git a/current/support/v7/palette/libs/android-support-v7-palette.jar b/current/support/v7/palette/libs/android-support-v7-palette.jar Binary files differindex 3328914..3df7a4e 100644 --- a/current/support/v7/palette/libs/android-support-v7-palette.jar +++ b/current/support/v7/palette/libs/android-support-v7-palette.jar diff --git a/current/support/v7/recyclerview/libs/android-support-v7-recyclerview.jar b/current/support/v7/recyclerview/libs/android-support-v7-recyclerview.jar Binary files differindex f48e888..c0172da 100644 --- a/current/support/v7/recyclerview/libs/android-support-v7-recyclerview.jar +++ b/current/support/v7/recyclerview/libs/android-support-v7-recyclerview.jar |