diff options
18 files changed, 19 insertions, 0 deletions
diff --git a/current/android.jar b/current/android.jar Binary files differindex 7f4a1d3..dd4bcc0 100644 --- a/current/android.jar +++ b/current/android.jar diff --git a/current/support/annotations/android-support-annotations.jar b/current/support/annotations/android-support-annotations.jar Binary files differindex 0f68265..296fb16 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 6342425..84726d4 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 e4ed6c9..150c5f6 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 9f21541..a41564e 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 8867266..9ffdb3d 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/v4/android-support-v4.jar b/current/support/v4/android-support-v4.jar Binary files differindex 35a880a..8e92b37 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 2bf7d7d..4cd1aaf 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/appcompat/res/layout/abc_screen_toolbar.xml b/current/support/v7/appcompat/res/layout/abc_screen_toolbar.xml index 55a2beb..20e0c0e 100644 --- a/current/support/v7/appcompat/res/layout/abc_screen_toolbar.xml +++ b/current/support/v7/appcompat/res/layout/abc_screen_toolbar.xml @@ -16,6 +16,7 @@ <android.support.v7.internal.widget.ActionBarOverlayLayout xmlns:android="http://schemas.android.com/apk/res/android" + xmlns:app="http://schemas.android.com/apk/res-auto" android:id="@+id/decor_content_parent" android:layout_width="match_parent" android:layout_height="match_parent" @@ -36,6 +37,7 @@ android:id="@+id/action_bar" android:layout_width="match_parent" android:layout_height="wrap_content" + app:navigationContentDescription="@string/abc_action_bar_up_description" style="?attr/toolbarStyle"/> <android.support.v7.internal.widget.ActionBarContextView diff --git a/current/support/v7/appcompat/res/values-v21/styles_base.xml b/current/support/v7/appcompat/res/values-v21/styles_base.xml index 26d1d57..3b20baa 100644 --- a/current/support/v7/appcompat/res/values-v21/styles_base.xml +++ b/current/support/v7/appcompat/res/values-v21/styles_base.xml @@ -158,10 +158,12 @@ </style> <style name="Base.Widget.AppCompat.PopupMenu.Overflow"> + <item name="android:dropDownHorizontalOffset">-4dip</item> <item name="android:overlapAnchor">true</item> </style> <style name="Base.Widget.AppCompat.Light.PopupMenu.Overflow"> + <item name="android:dropDownHorizontalOffset">-4dip</item> <item name="android:overlapAnchor">true</item> </style> diff --git a/current/support/v7/appcompat/res/values/attrs.xml b/current/support/v7/appcompat/res/values/attrs.xml index f279481..b3b1fa7 100644 --- a/current/support/v7/appcompat/res/values/attrs.xml +++ b/current/support/v7/appcompat/res/values/attrs.xml @@ -724,6 +724,12 @@ <!-- Reference to a theme that should be used to inflate popups shown by widgets in the toolbar. --> <attr name="popupTheme" /> + <!-- Icon drawable to use for the navigation button located at + the start of the toolbar. --> + <attr name="navigationIcon" format="reference" /> + <!-- Text to set as the content description for the navigation button + located at the start of the toolbar. --> + <attr name="navigationContentDescription" format="string" /> </declare-styleable> <declare-styleable name="PopupWindowBackgroundState"> @@ -731,4 +737,11 @@ <attr name="state_above_anchor" format="boolean" /> </declare-styleable> + <declare-styleable name="ListPopupWindow"> + <!-- Amount of pixels by which the drop down should be offset vertically. --> + <attr name="android:dropDownVerticalOffset" /> + <!-- Amount of pixels by which the drop down should be offset horizontally. --> + <attr name="android:dropDownHorizontalOffset" /> + </declare-styleable> + </resources> diff --git a/current/support/v7/appcompat/res/values/styles_base.xml b/current/support/v7/appcompat/res/values/styles_base.xml index 3391fec..1e83fb8 100644 --- a/current/support/v7/appcompat/res/values/styles_base.xml +++ b/current/support/v7/appcompat/res/values/styles_base.xml @@ -263,9 +263,11 @@ </style> <style name="Base.Widget.AppCompat.PopupMenu.Overflow"> + <item name="android:dropDownHorizontalOffset">-4dip</item> </style> <style name="Base.Widget.AppCompat.Light.PopupMenu.Overflow"> + <item name="android:dropDownHorizontalOffset">-4dip</item> </style> <style name="Base.Widget.AppCompat.PopupMenu" parent="@style/Widget.AppCompat.ListPopupWindow"> 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 3931ac2..932b96a 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 ad3c219..dbe3fb4 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 9f7a086..f98bfa9 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 54d40aa..b60d47f 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 ef513f2..0a115f7 100644 --- a/current/support/v7/recyclerview/libs/android-support-v7-recyclerview.jar +++ b/current/support/v7/recyclerview/libs/android-support-v7-recyclerview.jar diff --git a/current/uiautomator.jar b/current/uiautomator.jar Binary files differindex c2ddc93..cb1a48e 100644 --- a/current/uiautomator.jar +++ b/current/uiautomator.jar |