diff --git a/actionbarsherlock/CHANGELOG.md b/actionbarsherlock/CHANGELOG.md old mode 100644 new mode 100755 index 675d7441c..432230bf0 --- a/actionbarsherlock/CHANGELOG.md +++ b/actionbarsherlock/CHANGELOG.md @@ -1,18 +1,116 @@ Change Log =============================================================================== +Version 4.2.0 *(2012-10-07)* +---------------------------- + +**Maven `artifactId` is now to 'actionbarsherlock'.** + +Note: The `.Dialog` themes are now deprecated. These will be removed in a future +version of the library. + + * Add `SearchView` widget for standard search interaction (API 8+ only) + * Fix: `ShareActionProvider` in the split action bar no longer fills the entire + screen. + * Fix: `ShareActionProvider` now does file I/O on a background thread. + * Fix: Automatically correct `ColorDrawable` not respecting bounds when used as + a stacked background. + * Fix: Ensure fragments collection is present before dispatching events. + * Fix: XML-defined `onClick` searches the correct context for the declared + method. + * Fix: Ensure action mode start/finish callbacks are invoked on the activity + for the native action bar. + * Fix: Allow tab callbacks to have a fragment transaction instance for any + `FragmentActivity`. + * Fix: Ensure `CollapsibleActionView` callbacks are dispatched in both native + and compatbility action bars. + * Fix: Remove `.ForceOverflow` themes. These never should have been included. + + +Version 4.1.0 *(2012-05-17)* +---------------------------- + + * Fix: Altered technique used for menu event dispatching through the fragment + manager for greater control. + * Fix: Do not dispatch menu creation event if the activity has been destroyed. + * Fix: Correct potential `NullPointerException` when expanding an action item. + * Fix: Correct potential `NullPointerException` when the hardware menu key was + pressed in an activity that is forcing the overflow menu. + * Fix: Do not set a listener on the native action bar tab wrapper unless a + compatibility listener has been set. + * Fix: Ensure the compatibility animation framework is always available on + views even if they were previously detached from the view hierarchy. + + +Version 4.0.2 *(2012-04-15)* +---------------------------- + + * Upgrade to r7 support library. + * Fix: Do not trigger menu creation after `onCreate` if activity is finishing. + * Fix: Prevent overflow from displaying if there are no overflow action items. + * Fix: Long-pressing menu key no longer triggers overflow. + * Fix: Use proper tab state-list drawable to mimic ICS. + * Fix: Ensure dispatching menu creation and preparation to fragments can + properly return `false` when appropriate to avoid rendering artifacts. + * Fix: Properly save and fetch action mode tag on ICS. + * Fix: Add missing density-specific resources for certain asssets and remove + unused assets. + + +Version 4.0.1 *(2012-03-25)* +---------------------------- + + * Add `ShareActionProvider` widget for use as action items. + * Re-add 'Styled' sample to provide a more comprehensive theming example. + * Fix: Do not dispatch options item selection to fragments if the activity + handles the callback. + * Fix: Prevent menu key from opening the overflow menu when an action mode is + currently displayed. + * Fix: Ensure fragment transaction instance is not `null` on initial tab + selection callback. + * Fix: Displaying an action mode while using stacked tab navigation no longer + throws an exception. + * Fix: Using expandable action item callbacks no longer results in a possible + exception on older devices. + + +Version 4.0.0 *(2012-03-07)* +---------------------------- + +Complete rewrite of the library to backport the Android 4.0 action bar. + + * The minimum supported version of Android is now 2.1 (API 7). + * New base activities are provided (e.g., `SherlockActivity` and + `SherlockFragmentActivity`) which extend from the native activities. + * The support library sources are no longer included in the library. You must + include `android-support-v4.jar` in your project separately. + * Theming now mirrors that of the native action bar through the use of multiple + styles rather than through `ab`- and `am`-prefixed attributes in the theme. + * The action bar can be statically attached to an activity view without the + requirement of using one of the provided base activities. + + +Version 3.5.1 *(2012-01-03)* +---------------------------- + + * Fix: `NullPointerException` in `FragmentManager` can no longer occur when an + attempt is being made to save to a `Bundle` that has not yet been created. + * Fix: Pre-3.0 action item submenu dialogs now properly dismiss themselves when + an item of theirs is selected. + + Version 3.5.0 *(2011-12-18)* ---------------------------- * Library now uses the `r6` version of the compatibility library for its base. Ice Cream Sandwich-specific implementations are currently disabled, however, but will be added in a future version of the library. - + `MenuCompat`, `MenuItemCompat`, and `ActivityCompat` have be added back in to ease transition to this library but all their methods and the classes themselves have been deprecated. * Rewritten menu and action item support from Ice Cream Sandwich. - + * Removed the need for the custom `Window.FEATURE_ACTION_ITEM_TEXT` flag. You should now use the `showAsAction` attribute and/or the `setShowAsAction(int)` method on each `MenuItem` to control whether or @@ -29,7 +127,7 @@ Version 3.5.0 *(2011-12-18)* * Fix: Invisible sub-menu items are no longer shown on the pre-3.0 popup list. -Version 3.4.2 *(2011-11-09)* +Version 3.4.2 *(2001-11-09)* ---------------------------- * Fix: Stacked action bar now properly sets the tab bar background based on @@ -103,7 +201,7 @@ Version 3.3.0 *(2011-10-11)* [StackOverflow](http://stackoverflow.com/questions/5637894/dialogfragments-with-devices-api-level-11/7560686#7560686) for more information. * Fix: Popping a fragment off of the back stack now properly assigns its parent - activity. + activity. * Fix: An activity result no longer causes a `NullPointerException` when the target fragment no longer exists. * Fix: Action item dividers are now properly initially hidden when their diff --git a/actionbarsherlock/CONTRIBUTING.md b/actionbarsherlock/CONTRIBUTING.md new file mode 100755 index 000000000..30d383364 --- /dev/null +++ b/actionbarsherlock/CONTRIBUTING.md @@ -0,0 +1,11 @@ +Contributing +============ + +If you would like to contribute code to ActionBarSherlock you can do so through +GitHub by forking the repository and sending a pull request. + +When submitting code, please make every effort to follow existing conventions +and style in order to keep the code as readable as possible. Please also make +sure your code compiles by running `mvn clean verify`. Checkstyle failures +during compilation indicate errors in your style and can be viewed in the +`checkstyle-result.xml` file. diff --git a/actionbarsherlock/LICENSE.txt b/actionbarsherlock/LICENSE.txt old mode 100644 new mode 100755 diff --git a/actionbarsherlock/README.md b/actionbarsherlock/README.md old mode 100644 new mode 100755 index cb13e9ebe..6506c361d --- a/actionbarsherlock/README.md +++ b/actionbarsherlock/README.md @@ -1,22 +1,26 @@ -Action Bar Sherlock -=================== +ActionBarSherlock +================= -ActionBarSherlock is an extension of the [compatibility library][1] designed -to facilitate the use of the action bar design pattern across all versions of -Android through a single API. +ActionBarSherlock is an standalone library designed to facilitate the use of +the action bar design pattern across all versions of Android through a single +API. The library will automatically use the [native ActionBar][2] implementation on -Android 3.0 or later. For previous versions which do not include ActionBar, a -custom action bar implementation will automatically be wrapped around the -layout. Support for this goes all the way back to Android 1.6. - -Try out the sample applications on the Android Market: [Feature Demos][4], -[Shakespeare][5], and [Styled Action Bar][6]. +Android 4.0 or later. For previous versions which do not include ActionBar, a +custom action bar implementation based on the sources of Ice Cream Sandwich +will automatically be wrapped around the layout. This allows you to easily +develop an application with an action bar for every version of Android from 2.x +and up. **See http://actionbarsherlock.com for more information.** ![Example Image][3] +Try out the sample applications on the Android Market: [Feature Demos][4], +[Fragments][5], and [RoboGuice][6]. + +Continuous integration is provided by [Travis CI][7]. + Developed By @@ -29,7 +33,7 @@ Developed By License ======= - Copyright 2011 Jake Wharton + Copyright 2012 Jake Wharton Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. @@ -50,6 +54,7 @@ License [1]: http://android-developers.blogspot.com/2011/03/fragments-for-all.html [2]: http://developer.android.com/guide/topics/ui/actionbar.html [3]: http://actionbarsherlock.com/static/feature.png - [4]: https://market.android.com/details?id=com.actionbarsherlock.sample.demos - [5]: https://market.android.com/details?id=com.actionbarsherlock.sample.shakespeare - [6]: https://market.android.com/details?id=com.actionbarsherlock.sample.styledactionbar + [4]: https://play.google.com/store/apps/details?id=com.actionbarsherlock.sample.demos + [5]: https://play.google.com/store/apps/details?id=com.actionbarsherlock.sample.fragments + [6]: https://play.google.com/store/apps/details?id=com.actionbarsherlock.sample.roboguice + [7]: https://travis-ci.org/JakeWharton/ActionBarSherlock diff --git a/actionbarsherlock/checkstyle.xml b/actionbarsherlock/checkstyle.xml new file mode 100755 index 000000000..a2119a1ba --- /dev/null +++ b/actionbarsherlock/checkstyle.xml @@ -0,0 +1,121 @@ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + diff --git a/actionbarsherlock/library/AndroidManifest.xml b/actionbarsherlock/library/AndroidManifest.xml old mode 100644 new mode 100755 index d1d35e299..7b8a84824 --- a/actionbarsherlock/library/AndroidManifest.xml +++ b/actionbarsherlock/library/AndroidManifest.xml @@ -1,13 +1,6 @@ + - - - + diff --git a/actionbarsherlock/library/README.md b/actionbarsherlock/library/README.md old mode 100644 new mode 100755 index 4b22e6fe2..e8a2c080e --- a/actionbarsherlock/library/README.md +++ b/actionbarsherlock/library/README.md @@ -5,11 +5,11 @@ This folder contains the main library which should be linked against as an Android library project in your application. For more information see the "Including In Your Project" section of the -[download page][1]. +[usage page][1]. - [1]: http://actionbarsherlock.com/download.html + [1]: http://actionbarsherlock.com/usage.html diff --git a/actionbarsherlock/library/libs/android-support-v4.jar b/actionbarsherlock/library/libs/android-support-v4.jar new file mode 100755 index 000000000..99e063b33 Binary files /dev/null and b/actionbarsherlock/library/libs/android-support-v4.jar differ diff --git a/actionbarsherlock/library/pom.xml b/actionbarsherlock/library/pom.xml old mode 100644 new mode 100755 index 52596145f..3b6ce40ce --- a/actionbarsherlock/library/pom.xml +++ b/actionbarsherlock/library/pom.xml @@ -3,34 +3,47 @@ 4.0.0 - com.actionbarsherlock - library + actionbarsherlock ActionBarSherlock apklib com.actionbarsherlock parent - 3.5.0 + 4.2.0 ../pom.xml - + - android + com.google.android android provided + + com.google.android + support-v4 + + + + junit + junit + test + src + test com.jayway.maven.plugins.android.generation2 - maven-android-plugin + android-maven-plugin true + + ignored + @@ -44,6 +57,7 @@ com.google.code.maven-replacer-plugin maven-replacer-plugin + 1.4.0 process-sources @@ -66,7 +80,7 @@ org.apache.maven.plugins maven-checkstyle-plugin - ${project.basedir}/checkstyle.xml + ../checkstyle.xml @@ -100,5 +114,35 @@ + + + + + + org.eclipse.m2e + lifecycle-mapping + 1.0.0 + + + + + + com.google.code.maven-replacer-plugin + maven-replacer-plugin + [1.4.0,) + + replace + + + + + + + + + + + + diff --git a/actionbarsherlock/library/project.properties b/actionbarsherlock/library/project.properties old mode 100644 new mode 100755 diff --git a/actionbarsherlock/library/res/color/abs__item_bg.xml b/actionbarsherlock/library/res/color/abs__item_bg.xml deleted file mode 100644 index 1a5e2ed25..000000000 --- a/actionbarsherlock/library/res/color/abs__item_bg.xml +++ /dev/null @@ -1,14 +0,0 @@ - - - - - - - - - - - - - - diff --git a/actionbarsherlock/library/res/color/abs__primary_text_disable_only_holo_dark.xml b/actionbarsherlock/library/res/color/abs__primary_text_disable_only_holo_dark.xml new file mode 100755 index 000000000..ea7459aaf --- /dev/null +++ b/actionbarsherlock/library/res/color/abs__primary_text_disable_only_holo_dark.xml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/actionbarsherlock/library/res/color/abs__primary_text_disable_only_holo_light.xml b/actionbarsherlock/library/res/color/abs__primary_text_disable_only_holo_light.xml new file mode 100755 index 000000000..0edb33b4b --- /dev/null +++ b/actionbarsherlock/library/res/color/abs__primary_text_disable_only_holo_light.xml @@ -0,0 +1,21 @@ + + + + + + + + diff --git a/actionbarsherlock/library/res/color/abs__primary_text_holo_dark.xml b/actionbarsherlock/library/res/color/abs__primary_text_holo_dark.xml new file mode 100755 index 000000000..2bcfd0b63 --- /dev/null +++ b/actionbarsherlock/library/res/color/abs__primary_text_holo_dark.xml @@ -0,0 +1,24 @@ + + + + + + + + + + + diff --git a/actionbarsherlock/library/res/color/abs__primary_text_holo_light.xml b/actionbarsherlock/library/res/color/abs__primary_text_holo_light.xml new file mode 100755 index 000000000..198384fed --- /dev/null +++ b/actionbarsherlock/library/res/color/abs__primary_text_holo_light.xml @@ -0,0 +1,26 @@ + + + + + + + + + + + + + diff --git a/actionbarsherlock/library/res/color/abs__tab_text_color_dark.xml b/actionbarsherlock/library/res/color/abs__tab_text_color_dark.xml deleted file mode 100644 index ef120df86..000000000 --- a/actionbarsherlock/library/res/color/abs__tab_text_color_dark.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/actionbarsherlock/library/res/color/abs__tab_text_color_light.xml b/actionbarsherlock/library/res/color/abs__tab_text_color_light.xml deleted file mode 100644 index 4174d1844..000000000 --- a/actionbarsherlock/library/res/color/abs__tab_text_color_light.xml +++ /dev/null @@ -1,8 +0,0 @@ - - - - - - - - \ No newline at end of file diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ab_bottom_solid_dark_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_bottom_solid_dark_holo.9.png new file mode 100755 index 000000000..769463b36 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_bottom_solid_dark_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ab_bottom_solid_inverse_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_bottom_solid_inverse_holo.9.png new file mode 100755 index 000000000..88f11dcb9 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_bottom_solid_inverse_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ab_bottom_solid_light_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_bottom_solid_light_holo.9.png new file mode 100755 index 000000000..73050476e Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_bottom_solid_light_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ab_bottom_transparent_dark_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_bottom_transparent_dark_holo.9.png new file mode 100755 index 000000000..712a551ec Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_bottom_transparent_dark_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ab_bottom_transparent_light_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_bottom_transparent_light_holo.9.png new file mode 100755 index 000000000..bf3b9438b Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_bottom_transparent_light_holo.9.png differ diff --git a/facebook/facebook/res/drawable-hdpi/close.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_share_pack_holo_dark.9.png old mode 100644 new mode 100755 similarity index 54% rename from facebook/facebook/res/drawable-hdpi/close.png rename to actionbarsherlock/library/res/drawable-hdpi/abs__ab_share_pack_holo_dark.9.png index d44c33575..81b87b86c Binary files a/facebook/facebook/res/drawable-hdpi/close.png and b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_share_pack_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ab_share_pack_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_share_pack_holo_light.9.png new file mode 100755 index 000000000..8fc83e22e Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_share_pack_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ab_solid_dark_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_solid_dark_holo.9.png new file mode 100755 index 000000000..cbbaec588 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_solid_dark_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ab_solid_light_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_solid_light_holo.9.png new file mode 100755 index 000000000..af917e5b6 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_solid_light_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ab_solid_shadow_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_solid_shadow_holo.9.png new file mode 100755 index 000000000..2d59f354e Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_solid_shadow_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ab_stacked_solid_dark_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_stacked_solid_dark_holo.9.png new file mode 100755 index 000000000..0520e5a2f Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_stacked_solid_dark_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ab_stacked_solid_light_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_stacked_solid_light_holo.9.png new file mode 100755 index 000000000..e3e3f93b9 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_stacked_solid_light_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ab_stacked_transparent_dark_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_stacked_transparent_dark_holo.9.png old mode 100644 new mode 100755 diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ab_stacked_transparent_light_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_stacked_transparent_light_holo.9.png old mode 100644 new mode 100755 diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ab_transparent_dark_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_transparent_dark_holo.9.png new file mode 100755 index 000000000..0eff695d8 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_transparent_dark_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ab_transparent_light_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_transparent_light_holo.9.png new file mode 100755 index 000000000..219b170fa Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ab_transparent_light_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__btn_cab_done_default_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__btn_cab_done_default_holo_dark.9.png new file mode 100755 index 000000000..b0dc31fb3 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__btn_cab_done_default_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__btn_cab_done_default_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__btn_cab_done_default_holo_light.9.png new file mode 100755 index 000000000..4bc2683b1 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__btn_cab_done_default_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__btn_cab_done_focused_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__btn_cab_done_focused_holo_dark.9.png new file mode 100755 index 000000000..4af38fb70 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__btn_cab_done_focused_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__btn_cab_done_focused_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__btn_cab_done_focused_holo_light.9.png new file mode 100755 index 000000000..d32f74cf4 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__btn_cab_done_focused_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__btn_cab_done_pressed_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__btn_cab_done_pressed_holo_dark.9.png new file mode 100755 index 000000000..66adffed6 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__btn_cab_done_pressed_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__btn_cab_done_pressed_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__btn_cab_done_pressed_holo_light.9.png new file mode 100755 index 000000000..caeff9c33 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__btn_cab_done_pressed_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__cab_background_bottom_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__cab_background_bottom_holo_dark.9.png new file mode 100755 index 000000000..1d836f65a Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__cab_background_bottom_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__cab_background_bottom_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__cab_background_bottom_holo_light.9.png new file mode 100755 index 000000000..5818666d4 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__cab_background_bottom_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__cab_background_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__cab_background_holo_dark.9.png deleted file mode 100644 index 1a916b3fa..000000000 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__cab_background_holo_dark.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__cab_background_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__cab_background_holo_light.9.png deleted file mode 100644 index e8c9c6082..000000000 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__cab_background_holo_light.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__cab_background_top_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__cab_background_top_holo_dark.9.png new file mode 100755 index 000000000..564fb34b4 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__cab_background_top_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__cab_background_top_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__cab_background_top_holo_light.9.png new file mode 100755 index 000000000..ae21b760f Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__cab_background_top_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__cab_ic_close_focused_holo.png b/actionbarsherlock/library/res/drawable-hdpi/abs__cab_ic_close_focused_holo.png deleted file mode 100644 index 9d7f93208..000000000 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__cab_ic_close_focused_holo.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__cab_ic_close_normal_holo.png b/actionbarsherlock/library/res/drawable-hdpi/abs__cab_ic_close_normal_holo.png deleted file mode 100644 index 641507dfd..000000000 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__cab_ic_close_normal_holo.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__cab_ic_close_pressed_holo.png b/actionbarsherlock/library/res/drawable-hdpi/abs__cab_ic_close_pressed_holo.png deleted file mode 100644 index ebb0fc825..000000000 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__cab_ic_close_pressed_holo.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__dialog_full_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__dialog_full_holo_dark.9.png new file mode 100755 index 000000000..79e56f522 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__dialog_full_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__dialog_full_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__dialog_full_holo_light.9.png new file mode 100755 index 000000000..e029f210b Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__dialog_full_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ic_ab_back_holo_dark.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_ab_back_holo_dark.png old mode 100644 new mode 100755 index 7855cda9a..897a1c11a Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__ic_ab_back_holo_dark.png and b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_ab_back_holo_dark.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ic_ab_back_holo_light.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_ab_back_holo_light.png old mode 100644 new mode 100755 index c06277341..0c89f7140 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__ic_ab_back_holo_light.png and b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_ab_back_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ic_cab_done_holo_dark.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_cab_done_holo_dark.png new file mode 100755 index 000000000..d8662e3f0 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_cab_done_holo_dark.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ic_cab_done_holo_light.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_cab_done_holo_light.png new file mode 100755 index 000000000..ed03f620f Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_cab_done_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ic_clear_disabled.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_clear_disabled.png new file mode 100755 index 000000000..d97c342d5 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_clear_disabled.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ic_clear_normal.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_clear_normal.png new file mode 100755 index 000000000..33ad8d4b8 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_clear_normal.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ic_clear_search_api_disabled_holo_light.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_clear_search_api_disabled_holo_light.png new file mode 100755 index 000000000..3edbd7408 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_clear_search_api_disabled_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ic_clear_search_api_holo_light.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_clear_search_api_holo_light.png new file mode 100755 index 000000000..90db01b5b Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_clear_search_api_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ic_go.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_go.png new file mode 100755 index 000000000..97b825e83 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_go.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ic_go_search_api_holo_light.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_go_search_api_holo_light.png new file mode 100755 index 000000000..7e1ba2adc Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_go_search_api_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ic_menu_moreoverflow_normal_holo_dark.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_menu_moreoverflow_normal_holo_dark.png new file mode 100755 index 000000000..2abc45809 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_menu_moreoverflow_normal_holo_dark.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ic_menu_moreoverflow_normal_holo_light.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_menu_moreoverflow_normal_holo_light.png new file mode 100755 index 000000000..bb6aef1d0 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_menu_moreoverflow_normal_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ic_menu_share_holo_dark.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_menu_share_holo_dark.png new file mode 100755 index 000000000..6f747c8f0 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_menu_share_holo_dark.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ic_menu_share_holo_light.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_menu_share_holo_light.png new file mode 100755 index 000000000..682b2fdec Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_menu_share_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ic_search.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_search.png new file mode 100755 index 000000000..4be72f108 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_search.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ic_search_api_holo_light.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_search_api_holo_light.png new file mode 100755 index 000000000..72e207bc5 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_search_api_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ic_voice_search.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_voice_search.png new file mode 100755 index 000000000..66d14aec0 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_voice_search.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__ic_voice_search_api_holo_light.png b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_voice_search_api_holo_light.png new file mode 100755 index 000000000..3481c9828 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__ic_voice_search_api_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__list_activated_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__list_activated_holo.9.png new file mode 100755 index 000000000..4ea7afa00 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__list_activated_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__list_divider_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__list_divider_holo_dark.9.png new file mode 100755 index 000000000..986ab0b97 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__list_divider_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__list_divider_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__list_divider_holo_light.9.png new file mode 100755 index 000000000..0279e17a1 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__list_divider_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__list_focused_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__list_focused_holo.9.png old mode 100644 new mode 100755 index e354629ab..516f5c739 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__list_focused_holo.9.png and b/actionbarsherlock/library/res/drawable-hdpi/abs__list_focused_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__list_longpressed_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__list_longpressed_holo.9.png old mode 100644 new mode 100755 index 367c7d9ee..4ea7afa00 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__list_longpressed_holo.9.png and b/actionbarsherlock/library/res/drawable-hdpi/abs__list_longpressed_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__list_pressed_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__list_pressed_holo_dark.9.png old mode 100644 new mode 100755 index 9eae8f41c..5654cd694 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__list_pressed_holo_dark.9.png and b/actionbarsherlock/library/res/drawable-hdpi/abs__list_pressed_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__list_pressed_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__list_pressed_holo_light.9.png old mode 100644 new mode 100755 index a9131fcbc..5654cd694 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__list_pressed_holo_light.9.png and b/actionbarsherlock/library/res/drawable-hdpi/abs__list_pressed_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__list_selector_disabled_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__list_selector_disabled_holo_dark.9.png old mode 100644 new mode 100755 diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__list_selector_disabled_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__list_selector_disabled_holo_light.9.png old mode 100644 new mode 100755 diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__menu_dropdown_panel_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__menu_dropdown_panel_holo_dark.9.png new file mode 100755 index 000000000..4d3d20857 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__menu_dropdown_panel_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__menu_dropdown_panel_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__menu_dropdown_panel_holo_light.9.png new file mode 100755 index 000000000..924a99d17 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__menu_dropdown_panel_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__progress_bg_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__progress_bg_holo_dark.9.png new file mode 100755 index 000000000..310c368e7 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__progress_bg_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__progress_bg_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__progress_bg_holo_light.9.png new file mode 100755 index 000000000..70cb7fc7e Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__progress_bg_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__progress_primary_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__progress_primary_holo_dark.9.png new file mode 100755 index 000000000..1c269205e Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__progress_primary_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__progress_primary_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__progress_primary_holo_light.9.png new file mode 100755 index 000000000..1c269205e Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__progress_primary_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__progress_secondary_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__progress_secondary_holo_dark.9.png new file mode 100755 index 000000000..40d0d1645 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__progress_secondary_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__progress_secondary_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__progress_secondary_holo_light.9.png new file mode 100755 index 000000000..40d0d1645 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__progress_secondary_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_48_inner_holo.png b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_48_inner_holo.png new file mode 100755 index 000000000..c8358e9ce Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_48_inner_holo.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_48_outer_holo.png b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_48_outer_holo.png new file mode 100755 index 000000000..f62f74bb3 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_48_outer_holo.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_default_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_default_holo_dark.9.png new file mode 100755 index 000000000..eb28ff9a5 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_default_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_default_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_default_holo_light.9.png new file mode 100755 index 000000000..d281adb55 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_default_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_disabled_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_disabled_holo_dark.9.png new file mode 100755 index 000000000..b29858609 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_disabled_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_disabled_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_disabled_holo_light.9.png new file mode 100755 index 000000000..4215396dd Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_disabled_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_focused_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_focused_holo_dark.9.png new file mode 100755 index 000000000..a280eabf5 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_focused_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_focused_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_focused_holo_light.9.png new file mode 100755 index 000000000..f8d619b4d Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_focused_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_pressed_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_pressed_holo_dark.9.png new file mode 100755 index 000000000..955a2f340 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_pressed_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_pressed_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_pressed_holo_light.9.png new file mode 100755 index 000000000..6c22e223a Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_ab_pressed_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_default_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_default_holo_dark.9.png deleted file mode 100644 index ac36c068c..000000000 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_default_holo_dark.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_default_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_default_holo_light.9.png deleted file mode 100644 index 68215998b..000000000 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_default_holo_light.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_disabled_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_disabled_holo_dark.9.png deleted file mode 100644 index adde69415..000000000 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_disabled_holo_dark.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_disabled_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_disabled_holo_light.9.png deleted file mode 100644 index fdb4bdff0..000000000 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_disabled_holo_light.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_focused_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_focused_holo_dark.9.png deleted file mode 100644 index d40d165b7..000000000 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_focused_holo_dark.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_focused_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_focused_holo_light.9.png deleted file mode 100644 index 096b977f3..000000000 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_focused_holo_light.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_pressed_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_pressed_holo_dark.9.png deleted file mode 100644 index 3b260170c..000000000 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_pressed_holo_dark.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_pressed_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_pressed_holo_light.9.png deleted file mode 100644 index 33b661b07..000000000 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__spinner_pressed_holo_light.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__tab_selected_focused_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__tab_selected_focused_holo.9.png old mode 100644 new mode 100755 index 1ba35d554..673e3bf10 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__tab_selected_focused_holo.9.png and b/actionbarsherlock/library/res/drawable-hdpi/abs__tab_selected_focused_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__tab_selected_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__tab_selected_holo.9.png old mode 100644 new mode 100755 index ef913cc8e..d57df98b5 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__tab_selected_holo.9.png and b/actionbarsherlock/library/res/drawable-hdpi/abs__tab_selected_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__tab_selected_pressed_focused_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__tab_selected_pressed_focused_holo.9.png deleted file mode 100644 index d7e968806..000000000 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__tab_selected_pressed_focused_holo.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__tab_selected_pressed_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__tab_selected_pressed_holo.9.png old mode 100644 new mode 100755 index b8b1fcfe2..6278eef47 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__tab_selected_pressed_holo.9.png and b/actionbarsherlock/library/res/drawable-hdpi/abs__tab_selected_pressed_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__tab_unselected_focused_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__tab_unselected_focused_holo.9.png deleted file mode 100644 index 256e8e730..000000000 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__tab_unselected_focused_holo.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__tab_unselected_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__tab_unselected_holo.9.png deleted file mode 100644 index eaa306aee..000000000 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__tab_unselected_holo.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__tab_unselected_pressed_focused_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__tab_unselected_pressed_focused_holo.9.png deleted file mode 100644 index d17b82026..000000000 Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__tab_unselected_pressed_focused_holo.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__tab_unselected_pressed_holo.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__tab_unselected_pressed_holo.9.png old mode 100644 new mode 100755 index a344994fb..aadc6f87b Binary files a/actionbarsherlock/library/res/drawable-hdpi/abs__tab_unselected_pressed_holo.9.png and b/actionbarsherlock/library/res/drawable-hdpi/abs__tab_unselected_pressed_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_default_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_default_holo_dark.9.png new file mode 100755 index 000000000..70c0e7396 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_default_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_default_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_default_holo_light.9.png new file mode 100755 index 000000000..36e71d85d Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_default_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_right_default_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_right_default_holo_dark.9.png new file mode 100755 index 000000000..4be4af5fa Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_right_default_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_right_default_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_right_default_holo_light.9.png new file mode 100755 index 000000000..e72193f59 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_right_default_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_right_selected_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_right_selected_holo_dark.9.png new file mode 100755 index 000000000..8f20b9d26 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_right_selected_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_right_selected_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_right_selected_holo_light.9.png new file mode 100755 index 000000000..04f657e1d Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_right_selected_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_selected_holo_dark.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_selected_holo_dark.9.png new file mode 100755 index 000000000..99309ef6d Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_selected_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_selected_holo_light.9.png b/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_selected_holo_light.9.png new file mode 100755 index 000000000..9bde7fbdc Binary files /dev/null and b/actionbarsherlock/library/res/drawable-hdpi/abs__textfield_search_selected_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ab_bottom_solid_dark_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_bottom_solid_dark_holo.9.png new file mode 100755 index 000000000..b2293670b Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_bottom_solid_dark_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ab_bottom_solid_inverse_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_bottom_solid_inverse_holo.9.png new file mode 100755 index 000000000..c65f443e3 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_bottom_solid_inverse_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ab_bottom_solid_light_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_bottom_solid_light_holo.9.png new file mode 100755 index 000000000..0706c8af6 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_bottom_solid_light_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ab_bottom_transparent_dark_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_bottom_transparent_dark_holo.9.png new file mode 100755 index 000000000..d814d02d3 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_bottom_transparent_dark_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ab_bottom_transparent_light_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_bottom_transparent_light_holo.9.png new file mode 100755 index 000000000..b139c8e49 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_bottom_transparent_light_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ab_share_pack_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_share_pack_holo_dark.9.png new file mode 100755 index 000000000..738cb38d0 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_share_pack_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ab_share_pack_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_share_pack_holo_light.9.png new file mode 100755 index 000000000..2ed75a767 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_share_pack_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ab_solid_dark_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_solid_dark_holo.9.png new file mode 100755 index 000000000..743d00b6c Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_solid_dark_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ab_solid_light_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_solid_light_holo.9.png new file mode 100755 index 000000000..17c1fb921 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_solid_light_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ab_solid_shadow_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_solid_shadow_holo.9.png new file mode 100755 index 000000000..ddfc8e3d5 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_solid_shadow_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ab_stacked_solid_dark_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_stacked_solid_dark_holo.9.png new file mode 100755 index 000000000..007a4b239 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_stacked_solid_dark_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ab_stacked_solid_light_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_stacked_solid_light_holo.9.png new file mode 100755 index 000000000..ad6e1a4d9 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_stacked_solid_light_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ab_stacked_transparent_dark_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_stacked_transparent_dark_holo.9.png old mode 100644 new mode 100755 diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ab_stacked_transparent_light_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_stacked_transparent_light_holo.9.png old mode 100644 new mode 100755 diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ab_transparent_dark_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_transparent_dark_holo.9.png new file mode 100755 index 000000000..ad980b13f Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_transparent_dark_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ab_transparent_light_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_transparent_light_holo.9.png new file mode 100755 index 000000000..60e6c5278 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ab_transparent_light_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__btn_cab_done_default_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__btn_cab_done_default_holo_dark.9.png new file mode 100755 index 000000000..5461b9c00 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__btn_cab_done_default_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__btn_cab_done_default_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__btn_cab_done_default_holo_light.9.png new file mode 100755 index 000000000..5dc6f804a Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__btn_cab_done_default_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__btn_cab_done_focused_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__btn_cab_done_focused_holo_dark.9.png new file mode 100755 index 000000000..a70b53c59 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__btn_cab_done_focused_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__btn_cab_done_focused_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__btn_cab_done_focused_holo_light.9.png new file mode 100755 index 000000000..c7a9896b0 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__btn_cab_done_focused_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__btn_cab_done_pressed_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__btn_cab_done_pressed_holo_dark.9.png new file mode 100755 index 000000000..85d7aadd4 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__btn_cab_done_pressed_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__btn_cab_done_pressed_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__btn_cab_done_pressed_holo_light.9.png new file mode 100755 index 000000000..f7b01e012 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__btn_cab_done_pressed_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__cab_background_bottom_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__cab_background_bottom_holo_dark.9.png new file mode 100755 index 000000000..d8f1c8bd5 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__cab_background_bottom_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__cab_background_bottom_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__cab_background_bottom_holo_light.9.png new file mode 100755 index 000000000..31e49894a Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__cab_background_bottom_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__cab_background_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__cab_background_holo_dark.9.png deleted file mode 100644 index 38f44ce1c..000000000 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__cab_background_holo_dark.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__cab_background_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__cab_background_holo_light.9.png deleted file mode 100644 index 2a4deea44..000000000 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__cab_background_holo_light.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__cab_background_top_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__cab_background_top_holo_dark.9.png new file mode 100755 index 000000000..7c2cbe535 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__cab_background_top_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__cab_background_top_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__cab_background_top_holo_light.9.png new file mode 100755 index 000000000..30cbdc174 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__cab_background_top_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__cab_ic_close_focused_holo.png b/actionbarsherlock/library/res/drawable-mdpi/abs__cab_ic_close_focused_holo.png deleted file mode 100644 index 59149e4a5..000000000 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__cab_ic_close_focused_holo.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__cab_ic_close_normal_holo.png b/actionbarsherlock/library/res/drawable-mdpi/abs__cab_ic_close_normal_holo.png deleted file mode 100644 index b37888533..000000000 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__cab_ic_close_normal_holo.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__cab_ic_close_pressed_holo.png b/actionbarsherlock/library/res/drawable-mdpi/abs__cab_ic_close_pressed_holo.png deleted file mode 100644 index 29b040780..000000000 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__cab_ic_close_pressed_holo.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__dialog_full_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__dialog_full_holo_dark.9.png new file mode 100755 index 000000000..fb3660eab Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__dialog_full_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__dialog_full_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__dialog_full_holo_light.9.png new file mode 100755 index 000000000..f18050ea5 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__dialog_full_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ic_ab_back_holo_dark.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_ab_back_holo_dark.png old mode 100644 new mode 100755 index ae3e6bfb8..df2d3d158 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__ic_ab_back_holo_dark.png and b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_ab_back_holo_dark.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ic_ab_back_holo_light.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_ab_back_holo_light.png old mode 100644 new mode 100755 index c61e3fa86..b2aa9c265 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__ic_ab_back_holo_light.png and b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_ab_back_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ic_cab_done_holo_dark.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_cab_done_holo_dark.png new file mode 100755 index 000000000..a17b6a789 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_cab_done_holo_dark.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ic_cab_done_holo_light.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_cab_done_holo_light.png new file mode 100755 index 000000000..b28b3b54f Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_cab_done_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ic_clear_disabled.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_clear_disabled.png new file mode 100755 index 000000000..79228baed Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_clear_disabled.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ic_clear_normal.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_clear_normal.png new file mode 100755 index 000000000..86944a879 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_clear_normal.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ic_clear_search_api_disabled_holo_light.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_clear_search_api_disabled_holo_light.png new file mode 100755 index 000000000..c0bdf0641 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_clear_search_api_disabled_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ic_clear_search_api_holo_light.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_clear_search_api_holo_light.png new file mode 100755 index 000000000..15b86cbb2 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_clear_search_api_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ic_go.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_go.png new file mode 100755 index 000000000..bf19833f2 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_go.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ic_go_search_api_holo_light.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_go_search_api_holo_light.png new file mode 100755 index 000000000..8518498eb Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_go_search_api_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ic_menu_moreoverflow_normal_holo_dark.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_menu_moreoverflow_normal_holo_dark.png new file mode 100755 index 000000000..ba704b67e Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_menu_moreoverflow_normal_holo_dark.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ic_menu_moreoverflow_normal_holo_light.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_menu_moreoverflow_normal_holo_light.png new file mode 100755 index 000000000..01d681697 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_menu_moreoverflow_normal_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ic_menu_share_holo_dark.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_menu_share_holo_dark.png new file mode 100755 index 000000000..6bf21e307 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_menu_share_holo_dark.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ic_menu_share_holo_light.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_menu_share_holo_light.png new file mode 100755 index 000000000..70fe31aa2 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_menu_share_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ic_search.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_search.png new file mode 100755 index 000000000..4be72f108 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_search.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ic_search_api_holo_light.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_search_api_holo_light.png new file mode 100755 index 000000000..f2e26f883 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_search_api_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ic_voice_search.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_voice_search.png new file mode 100755 index 000000000..73c6be654 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_voice_search.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__ic_voice_search_api_holo_light.png b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_voice_search_api_holo_light.png new file mode 100755 index 000000000..71d838e73 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__ic_voice_search_api_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__list_activated_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__list_activated_holo.9.png new file mode 100755 index 000000000..3bf8e0362 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__list_activated_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__list_divider_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__list_divider_holo_dark.9.png new file mode 100755 index 000000000..986ab0b97 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__list_divider_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__list_divider_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__list_divider_holo_light.9.png new file mode 100755 index 000000000..0279e17a1 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__list_divider_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__list_focused_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__list_focused_holo.9.png old mode 100644 new mode 100755 index e2449ddd5..7c0599e3a Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__list_focused_holo.9.png and b/actionbarsherlock/library/res/drawable-mdpi/abs__list_focused_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__list_longpressed_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__list_longpressed_holo.9.png old mode 100644 new mode 100755 index 3483891c5..3bf8e0362 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__list_longpressed_holo.9.png and b/actionbarsherlock/library/res/drawable-mdpi/abs__list_longpressed_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__list_pressed_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__list_pressed_holo_dark.9.png old mode 100644 new mode 100755 index e3344b627..6e77525d2 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__list_pressed_holo_dark.9.png and b/actionbarsherlock/library/res/drawable-mdpi/abs__list_pressed_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__list_pressed_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__list_pressed_holo_light.9.png old mode 100644 new mode 100755 index 236597868..6e77525d2 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__list_pressed_holo_light.9.png and b/actionbarsherlock/library/res/drawable-mdpi/abs__list_pressed_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__list_selector_disabled_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__list_selector_disabled_holo_dark.9.png old mode 100644 new mode 100755 diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__list_selector_disabled_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__list_selector_disabled_holo_light.9.png old mode 100644 new mode 100755 diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__menu_dropdown_panel_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__menu_dropdown_panel_holo_dark.9.png new file mode 100755 index 000000000..460ec46eb Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__menu_dropdown_panel_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__menu_dropdown_panel_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__menu_dropdown_panel_holo_light.9.png new file mode 100755 index 000000000..e84adf2d4 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__menu_dropdown_panel_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__progress_bg_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__progress_bg_holo_dark.9.png new file mode 100755 index 000000000..3d946e545 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__progress_bg_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__progress_bg_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__progress_bg_holo_light.9.png new file mode 100755 index 000000000..4bb22f0e1 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__progress_bg_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__progress_primary_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__progress_primary_holo_dark.9.png new file mode 100755 index 000000000..ab8ec6984 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__progress_primary_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__progress_primary_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__progress_primary_holo_light.9.png new file mode 100755 index 000000000..ab8ec6984 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__progress_primary_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__progress_secondary_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__progress_secondary_holo_dark.9.png new file mode 100755 index 000000000..7274274b1 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__progress_secondary_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__progress_secondary_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__progress_secondary_holo_light.9.png new file mode 100755 index 000000000..7274274b1 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__progress_secondary_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_48_inner_holo.png b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_48_inner_holo.png new file mode 100755 index 000000000..9458668f0 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_48_inner_holo.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_48_outer_holo.png b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_48_outer_holo.png new file mode 100755 index 000000000..4ce73edce Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_48_outer_holo.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_default_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_default_holo_dark.9.png new file mode 100755 index 000000000..29aff4d43 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_default_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_default_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_default_holo_light.9.png new file mode 100755 index 000000000..4055f7053 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_default_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_disabled_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_disabled_holo_dark.9.png new file mode 100755 index 000000000..ea4ee042e Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_disabled_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_disabled_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_disabled_holo_light.9.png new file mode 100755 index 000000000..f74c02b9e Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_disabled_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_focused_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_focused_holo_dark.9.png new file mode 100755 index 000000000..09a2992cc Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_focused_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_focused_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_focused_holo_light.9.png new file mode 100755 index 000000000..6536ee633 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_focused_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_pressed_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_pressed_holo_dark.9.png new file mode 100755 index 000000000..202b5b72e Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_pressed_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_pressed_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_pressed_holo_light.9.png new file mode 100755 index 000000000..6de0ba884 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_ab_pressed_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_default_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_default_holo_dark.9.png deleted file mode 100644 index 99b16056b..000000000 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_default_holo_dark.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_default_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_default_holo_light.9.png deleted file mode 100644 index c820e40a1..000000000 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_default_holo_light.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_disabled_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_disabled_holo_dark.9.png deleted file mode 100644 index 95d7c86e5..000000000 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_disabled_holo_dark.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_disabled_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_disabled_holo_light.9.png deleted file mode 100644 index 2dba2704f..000000000 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_disabled_holo_light.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_focused_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_focused_holo_dark.9.png deleted file mode 100644 index 2e2fadd83..000000000 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_focused_holo_dark.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_focused_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_focused_holo_light.9.png deleted file mode 100644 index 5bbbf6395..000000000 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_focused_holo_light.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_pressed_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_pressed_holo_dark.9.png deleted file mode 100644 index 083194a6f..000000000 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_pressed_holo_dark.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_pressed_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_pressed_holo_light.9.png deleted file mode 100644 index 29cbc4621..000000000 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__spinner_pressed_holo_light.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__tab_selected_focused_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__tab_selected_focused_holo.9.png old mode 100644 new mode 100755 index 9a33cd2d9..c9972e74b Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__tab_selected_focused_holo.9.png and b/actionbarsherlock/library/res/drawable-mdpi/abs__tab_selected_focused_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__tab_selected_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__tab_selected_holo.9.png old mode 100644 new mode 100755 index e029e577a..587337caf Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__tab_selected_holo.9.png and b/actionbarsherlock/library/res/drawable-mdpi/abs__tab_selected_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__tab_selected_pressed_focused_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__tab_selected_pressed_focused_holo.9.png deleted file mode 100644 index 285116e31..000000000 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__tab_selected_pressed_focused_holo.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__tab_selected_pressed_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__tab_selected_pressed_holo.9.png old mode 100644 new mode 100755 index dadefa758..155c4fc75 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__tab_selected_pressed_holo.9.png and b/actionbarsherlock/library/res/drawable-mdpi/abs__tab_selected_pressed_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__tab_unselected_focused_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__tab_unselected_focused_holo.9.png deleted file mode 100644 index 032a9921c..000000000 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__tab_unselected_focused_holo.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__tab_unselected_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__tab_unselected_holo.9.png deleted file mode 100644 index 848f3f133..000000000 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__tab_unselected_holo.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__tab_unselected_pressed_focused_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__tab_unselected_pressed_focused_holo.9.png deleted file mode 100644 index 384513584..000000000 Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__tab_unselected_pressed_focused_holo.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__tab_unselected_pressed_holo.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__tab_unselected_pressed_holo.9.png old mode 100644 new mode 100755 index 23fd8c9b3..b1223fe3c Binary files a/actionbarsherlock/library/res/drawable-mdpi/abs__tab_unselected_pressed_holo.9.png and b/actionbarsherlock/library/res/drawable-mdpi/abs__tab_unselected_pressed_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_default_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_default_holo_dark.9.png new file mode 100755 index 000000000..081657ee7 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_default_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_default_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_default_holo_light.9.png new file mode 100755 index 000000000..3f312b465 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_default_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_right_default_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_right_default_holo_dark.9.png new file mode 100755 index 000000000..b086fae87 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_right_default_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_right_default_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_right_default_holo_light.9.png new file mode 100755 index 000000000..73c336a77 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_right_default_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_right_selected_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_right_selected_holo_dark.9.png new file mode 100755 index 000000000..726e0ff42 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_right_selected_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_right_selected_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_right_selected_holo_light.9.png new file mode 100755 index 000000000..726e0ff42 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_right_selected_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_selected_holo_dark.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_selected_holo_dark.9.png new file mode 100755 index 000000000..1767c169e Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_selected_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_selected_holo_light.9.png b/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_selected_holo_light.9.png new file mode 100755 index 000000000..1767c169e Binary files /dev/null and b/actionbarsherlock/library/res/drawable-mdpi/abs__textfield_search_selected_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-nodpi-v11/abs__action_item_divider.9.png b/actionbarsherlock/library/res/drawable-nodpi-v11/abs__action_item_divider.9.png deleted file mode 100644 index c30f607d0..000000000 Binary files a/actionbarsherlock/library/res/drawable-nodpi-v11/abs__action_item_divider.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-nodpi/abs__action_item_divider.9.png b/actionbarsherlock/library/res/drawable-nodpi/abs__action_item_divider.9.png deleted file mode 100644 index 62332880b..000000000 Binary files a/actionbarsherlock/library/res/drawable-nodpi/abs__action_item_divider.9.png and /dev/null differ diff --git a/actionbarsherlock/library/res/drawable-v11/abs__progress_medium_holo.xml b/actionbarsherlock/library/res/drawable-v11/abs__progress_medium_holo.xml new file mode 100755 index 000000000..6bcbdb83f --- /dev/null +++ b/actionbarsherlock/library/res/drawable-v11/abs__progress_medium_holo.xml @@ -0,0 +1,34 @@ + + + + + + + + + + diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_bottom_solid_dark_holo.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_bottom_solid_dark_holo.9.png new file mode 100755 index 000000000..575334699 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_bottom_solid_dark_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_bottom_solid_inverse_holo.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_bottom_solid_inverse_holo.9.png new file mode 100755 index 000000000..7e6c047d6 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_bottom_solid_inverse_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_bottom_solid_light_holo.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_bottom_solid_light_holo.9.png new file mode 100755 index 000000000..8155fe840 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_bottom_solid_light_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_bottom_transparent_dark_holo.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_bottom_transparent_dark_holo.9.png new file mode 100755 index 000000000..6cee9a128 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_bottom_transparent_dark_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_bottom_transparent_light_holo.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_bottom_transparent_light_holo.9.png new file mode 100755 index 000000000..fa4d76af9 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_bottom_transparent_light_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_share_pack_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_share_pack_holo_dark.9.png new file mode 100755 index 000000000..9a70a5d1e Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_share_pack_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_share_pack_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_share_pack_holo_light.9.png new file mode 100755 index 000000000..14fbee101 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_share_pack_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_solid_dark_holo.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_solid_dark_holo.9.png new file mode 100755 index 000000000..6622cbad3 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_solid_dark_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_solid_light_holo.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_solid_light_holo.9.png new file mode 100755 index 000000000..c42729783 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_solid_light_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_solid_shadow_holo.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_solid_shadow_holo.9.png new file mode 100755 index 000000000..d0df29d8b Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_solid_shadow_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_stacked_solid_dark_holo.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_stacked_solid_dark_holo.9.png new file mode 100755 index 000000000..a0d9c1b95 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_stacked_solid_dark_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_stacked_solid_light_holo.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_stacked_solid_light_holo.9.png new file mode 100755 index 000000000..d36f99fec Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_stacked_solid_light_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_stacked_transparent_dark_holo.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_stacked_transparent_dark_holo.9.png new file mode 100755 index 000000000..5ad475dc3 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_stacked_transparent_dark_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_stacked_transparent_light_holo.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_stacked_transparent_light_holo.9.png new file mode 100755 index 000000000..6ade5eeb3 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_stacked_transparent_light_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_transparent_dark_holo.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_transparent_dark_holo.9.png new file mode 100755 index 000000000..719b9234d Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_transparent_dark_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_transparent_light_holo.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_transparent_light_holo.9.png new file mode 100755 index 000000000..6da264db2 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ab_transparent_light_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__btn_cab_done_default_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__btn_cab_done_default_holo_dark.9.png new file mode 100755 index 000000000..7ef2db75e Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__btn_cab_done_default_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__btn_cab_done_default_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__btn_cab_done_default_holo_light.9.png new file mode 100755 index 000000000..2283b4c01 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__btn_cab_done_default_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__btn_cab_done_focused_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__btn_cab_done_focused_holo_dark.9.png new file mode 100755 index 000000000..6d2039e28 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__btn_cab_done_focused_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__btn_cab_done_focused_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__btn_cab_done_focused_holo_light.9.png new file mode 100755 index 000000000..3c909b513 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__btn_cab_done_focused_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__btn_cab_done_pressed_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__btn_cab_done_pressed_holo_dark.9.png new file mode 100755 index 000000000..131d1030c Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__btn_cab_done_pressed_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__btn_cab_done_pressed_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__btn_cab_done_pressed_holo_light.9.png new file mode 100755 index 000000000..3e7dcdfdb Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__btn_cab_done_pressed_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__cab_background_bottom_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__cab_background_bottom_holo_dark.9.png new file mode 100755 index 000000000..0bd09806f Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__cab_background_bottom_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__cab_background_bottom_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__cab_background_bottom_holo_light.9.png new file mode 100755 index 000000000..43ed26d47 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__cab_background_bottom_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__cab_background_top_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__cab_background_top_holo_dark.9.png new file mode 100755 index 000000000..6b3157985 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__cab_background_top_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__cab_background_top_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__cab_background_top_holo_light.9.png new file mode 100755 index 000000000..df0121bb3 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__cab_background_top_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__dialog_full_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__dialog_full_holo_dark.9.png new file mode 100755 index 000000000..f4970ad1c Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__dialog_full_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__dialog_full_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__dialog_full_holo_light.9.png new file mode 100755 index 000000000..172fc3b5e Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__dialog_full_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_ab_back_holo_dark.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_ab_back_holo_dark.png new file mode 100755 index 000000000..8ded62fb7 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_ab_back_holo_dark.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_ab_back_holo_light.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_ab_back_holo_light.png new file mode 100755 index 000000000..517e9f72d Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_ab_back_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_cab_done_holo_dark.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_cab_done_holo_dark.png new file mode 100755 index 000000000..2e06dd01b Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_cab_done_holo_dark.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_cab_done_holo_light.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_cab_done_holo_light.png new file mode 100755 index 000000000..bb19810bc Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_cab_done_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_clear_disabled.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_clear_disabled.png new file mode 100755 index 000000000..e35c5f05e Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_clear_disabled.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_clear_search_api_disabled_holo_light.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_clear_search_api_disabled_holo_light.png new file mode 100755 index 000000000..7fd7aeb2a Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_clear_search_api_disabled_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_clear_search_api_holo_light.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_clear_search_api_holo_light.png new file mode 100755 index 000000000..53cfbd311 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_clear_search_api_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_go.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_go.png new file mode 100755 index 000000000..1e2dcfa02 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_go.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_go_search_api_holo_light.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_go_search_api_holo_light.png new file mode 100755 index 000000000..f12eafcdc Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_go_search_api_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_menu_moreoverflow_normal_holo_dark.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_menu_moreoverflow_normal_holo_dark.png new file mode 100755 index 000000000..a92fb1d4a Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_menu_moreoverflow_normal_holo_dark.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_menu_moreoverflow_normal_holo_light.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_menu_moreoverflow_normal_holo_light.png new file mode 100755 index 000000000..930ca8d95 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_menu_moreoverflow_normal_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_menu_share_holo_dark.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_menu_share_holo_dark.png new file mode 100755 index 000000000..45a0f1da0 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_menu_share_holo_dark.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_menu_share_holo_light.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_menu_share_holo_light.png new file mode 100755 index 000000000..528e554ab Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_menu_share_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_search.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_search.png new file mode 100755 index 000000000..998f91be9 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_search.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_search_api_holo_light.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_search_api_holo_light.png new file mode 100755 index 000000000..a4cdf1c79 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_search_api_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_voice_search.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_voice_search.png new file mode 100755 index 000000000..c625a3602 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_voice_search.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_voice_search_api_holo_light.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_voice_search_api_holo_light.png new file mode 100755 index 000000000..c332ba08c Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__ic_voice_search_api_holo_light.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__list_activated_holo.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__list_activated_holo.9.png new file mode 100755 index 000000000..eda10e612 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__list_activated_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__list_divider_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__list_divider_holo_dark.9.png new file mode 100755 index 000000000..e62f011d4 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__list_divider_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__list_divider_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__list_divider_holo_light.9.png new file mode 100755 index 000000000..65061c0f4 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__list_divider_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__list_focused_holo.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__list_focused_holo.9.png new file mode 100755 index 000000000..690cb1eb6 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__list_focused_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__list_longpressed_holo.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__list_longpressed_holo.9.png new file mode 100755 index 000000000..eda10e612 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__list_longpressed_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__list_pressed_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__list_pressed_holo_dark.9.png new file mode 100755 index 000000000..e4b33935a Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__list_pressed_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__list_pressed_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__list_pressed_holo_light.9.png new file mode 100755 index 000000000..e4b33935a Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__list_pressed_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__list_selector_disabled_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__list_selector_disabled_holo_dark.9.png new file mode 100755 index 000000000..88726b691 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__list_selector_disabled_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__list_selector_disabled_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__list_selector_disabled_holo_light.9.png new file mode 100755 index 000000000..c6a7d4d87 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__list_selector_disabled_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__menu_dropdown_panel_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__menu_dropdown_panel_holo_dark.9.png new file mode 100755 index 000000000..e2aff72f4 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__menu_dropdown_panel_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__menu_dropdown_panel_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__menu_dropdown_panel_holo_light.9.png new file mode 100755 index 000000000..93066c840 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__menu_dropdown_panel_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__progress_bg_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__progress_bg_holo_dark.9.png new file mode 100755 index 000000000..345f5d306 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__progress_bg_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__progress_bg_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__progress_bg_holo_light.9.png new file mode 100755 index 000000000..c843ef3af Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__progress_bg_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__progress_primary_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__progress_primary_holo_dark.9.png new file mode 100755 index 000000000..c6c3f1ec2 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__progress_primary_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__progress_primary_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__progress_primary_holo_light.9.png new file mode 100755 index 000000000..c6c3f1ec2 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__progress_primary_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__progress_secondary_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__progress_secondary_holo_dark.9.png new file mode 100755 index 000000000..205b66e2c Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__progress_secondary_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__progress_secondary_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__progress_secondary_holo_light.9.png new file mode 100755 index 000000000..205b66e2c Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__progress_secondary_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_48_inner_holo.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_48_inner_holo.png new file mode 100755 index 000000000..19517c4b0 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_48_inner_holo.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_48_outer_holo.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_48_outer_holo.png new file mode 100755 index 000000000..14143c51c Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_48_outer_holo.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_default_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_default_holo_dark.9.png new file mode 100755 index 000000000..d8929fcd1 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_default_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_default_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_default_holo_light.9.png new file mode 100755 index 000000000..9174c4e4b Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_default_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_disabled_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_disabled_holo_dark.9.png new file mode 100755 index 000000000..3015d3070 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_disabled_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_disabled_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_disabled_holo_light.9.png new file mode 100755 index 000000000..126637d11 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_disabled_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_focused_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_focused_holo_dark.9.png new file mode 100755 index 000000000..d45c7a864 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_focused_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_focused_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_focused_holo_light.9.png new file mode 100755 index 000000000..29036b907 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_focused_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_pressed_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_pressed_holo_dark.9.png new file mode 100755 index 000000000..2cb34d7f6 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_pressed_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_pressed_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_pressed_holo_light.9.png new file mode 100755 index 000000000..82f752fdc Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__spinner_ab_pressed_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__tab_selected_focused_holo.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__tab_selected_focused_holo.9.png new file mode 100755 index 000000000..03cfb0945 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__tab_selected_focused_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__tab_selected_holo.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__tab_selected_holo.9.png new file mode 100755 index 000000000..e4229f26b Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__tab_selected_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__tab_selected_pressed_holo.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__tab_selected_pressed_holo.9.png new file mode 100755 index 000000000..e862cb121 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__tab_selected_pressed_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__tab_unselected_pressed_holo.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__tab_unselected_pressed_holo.9.png new file mode 100755 index 000000000..f1eb67323 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__tab_unselected_pressed_holo.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_default_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_default_holo_dark.9.png new file mode 100755 index 000000000..8fdbbf3ad Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_default_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_default_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_default_holo_light.9.png new file mode 100755 index 000000000..4e9ae43c2 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_default_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_right_default_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_right_default_holo_dark.9.png new file mode 100755 index 000000000..98f4871bb Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_right_default_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_right_default_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_right_default_holo_light.9.png new file mode 100755 index 000000000..733373ed3 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_right_default_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_right_selected_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_right_selected_holo_dark.9.png new file mode 100755 index 000000000..0c6bb036d Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_right_selected_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_right_selected_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_right_selected_holo_light.9.png new file mode 100755 index 000000000..0c6bb036d Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_right_selected_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_selected_holo_dark.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_selected_holo_dark.9.png new file mode 100755 index 000000000..e5bfd8ad3 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_selected_holo_dark.9.png differ diff --git a/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_selected_holo_light.9.png b/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_selected_holo_light.9.png new file mode 100755 index 000000000..1743da6b4 Binary files /dev/null and b/actionbarsherlock/library/res/drawable-xhdpi/abs__textfield_search_selected_holo_light.9.png differ diff --git a/actionbarsherlock/library/res/drawable/abs__activated_background_holo_dark.xml b/actionbarsherlock/library/res/drawable/abs__activated_background_holo_dark.xml new file mode 100755 index 000000000..85c2c0212 --- /dev/null +++ b/actionbarsherlock/library/res/drawable/abs__activated_background_holo_dark.xml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/actionbarsherlock/library/res/drawable/abs__activated_background_holo_light.xml b/actionbarsherlock/library/res/drawable/abs__activated_background_holo_light.xml new file mode 100755 index 000000000..85c2c0212 --- /dev/null +++ b/actionbarsherlock/library/res/drawable/abs__activated_background_holo_light.xml @@ -0,0 +1,20 @@ + + + + + + + diff --git a/actionbarsherlock/library/res/drawable/abs__btn_cab_done_holo_dark.xml b/actionbarsherlock/library/res/drawable/abs__btn_cab_done_holo_dark.xml new file mode 100755 index 000000000..cab896283 --- /dev/null +++ b/actionbarsherlock/library/res/drawable/abs__btn_cab_done_holo_dark.xml @@ -0,0 +1,24 @@ + + + + + + + + diff --git a/actionbarsherlock/library/res/drawable/abs__btn_cab_done_holo_light.xml b/actionbarsherlock/library/res/drawable/abs__btn_cab_done_holo_light.xml new file mode 100755 index 000000000..42ba8a0df --- /dev/null +++ b/actionbarsherlock/library/res/drawable/abs__btn_cab_done_holo_light.xml @@ -0,0 +1,24 @@ + + + + + + + + diff --git a/actionbarsherlock/library/res/drawable/abs__cab_ic_close_holo.xml b/actionbarsherlock/library/res/drawable/abs__ic_clear.xml old mode 100644 new mode 100755 similarity index 71% rename from actionbarsherlock/library/res/drawable/abs__cab_ic_close_holo.xml rename to actionbarsherlock/library/res/drawable/abs__ic_clear.xml index 0da7e2370..a16f4b22e --- a/actionbarsherlock/library/res/drawable/abs__cab_ic_close_holo.xml +++ b/actionbarsherlock/library/res/drawable/abs__ic_clear.xml @@ -15,9 +15,8 @@ --> - - - + + diff --git a/actionbarsherlock/library/res/drawable/abs__ic_clear_holo_light.xml b/actionbarsherlock/library/res/drawable/abs__ic_clear_holo_light.xml new file mode 100755 index 000000000..256de80fb --- /dev/null +++ b/actionbarsherlock/library/res/drawable/abs__ic_clear_holo_light.xml @@ -0,0 +1,22 @@ + + + + + + + diff --git a/actionbarsherlock/library/res/layout-land/abs__action_bar.xml b/actionbarsherlock/library/res/drawable/abs__ic_menu_moreoverflow_holo_dark.xml old mode 100644 new mode 100755 similarity index 73% rename from actionbarsherlock/library/res/layout-land/abs__action_bar.xml rename to actionbarsherlock/library/res/drawable/abs__ic_menu_moreoverflow_holo_dark.xml index a9641546e..2588a492d --- a/actionbarsherlock/library/res/layout-land/abs__action_bar.xml +++ b/actionbarsherlock/library/res/drawable/abs__ic_menu_moreoverflow_holo_dark.xml @@ -1,7 +1,5 @@ - - - - + + + diff --git a/actionbarsherlock/library/res/drawable/abs__ic_menu_moreoverflow_holo_light.xml b/actionbarsherlock/library/res/drawable/abs__ic_menu_moreoverflow_holo_light.xml new file mode 100755 index 000000000..e2078c967 --- /dev/null +++ b/actionbarsherlock/library/res/drawable/abs__ic_menu_moreoverflow_holo_light.xml @@ -0,0 +1,18 @@ + + + + + diff --git a/actionbarsherlock/library/res/drawable/abs__item_background_holo_dark.xml b/actionbarsherlock/library/res/drawable/abs__item_background_holo_dark.xml old mode 100644 new mode 100755 index b7b97b5ae..d99b7a426 --- a/actionbarsherlock/library/res/drawable/abs__item_background_holo_dark.xml +++ b/actionbarsherlock/library/res/drawable/abs__item_background_holo_dark.xml @@ -14,10 +14,7 @@ limitations under the License. --> - - - + diff --git a/actionbarsherlock/library/res/drawable/abs__item_background_holo_light.xml b/actionbarsherlock/library/res/drawable/abs__item_background_holo_light.xml old mode 100644 new mode 100755 index fdcac1d8a..da5fb2e86 --- a/actionbarsherlock/library/res/drawable/abs__item_background_holo_light.xml +++ b/actionbarsherlock/library/res/drawable/abs__item_background_holo_light.xml @@ -14,10 +14,7 @@ limitations under the License. --> - - - + diff --git a/actionbarsherlock/library/res/drawable/abs__list_selector_background_transition_holo_dark.xml b/actionbarsherlock/library/res/drawable/abs__list_selector_background_transition_holo_dark.xml old mode 100644 new mode 100755 diff --git a/actionbarsherlock/library/res/drawable/abs__list_selector_background_transition_holo_light.xml b/actionbarsherlock/library/res/drawable/abs__list_selector_background_transition_holo_light.xml old mode 100644 new mode 100755 diff --git a/actionbarsherlock/library/res/drawable/abs__list_selector_holo_dark.xml b/actionbarsherlock/library/res/drawable/abs__list_selector_holo_dark.xml new file mode 100755 index 000000000..08b8b12f3 --- /dev/null +++ b/actionbarsherlock/library/res/drawable/abs__list_selector_holo_dark.xml @@ -0,0 +1,27 @@ + + + + + + + + + + + + + + diff --git a/actionbarsherlock/library/res/drawable/abs__list_selector_holo_light.xml b/actionbarsherlock/library/res/drawable/abs__list_selector_holo_light.xml new file mode 100755 index 000000000..ada490bf9 --- /dev/null +++ b/actionbarsherlock/library/res/drawable/abs__list_selector_holo_light.xml @@ -0,0 +1,28 @@ + + + + + + + + + + + + + + + diff --git a/actionbarsherlock/samples/shakespeare/res/layout/activity_titles.xml b/actionbarsherlock/library/res/drawable/abs__progress_horizontal_holo_dark.xml old mode 100644 new mode 100755 similarity index 54% rename from actionbarsherlock/samples/shakespeare/res/layout/activity_titles.xml rename to actionbarsherlock/library/res/drawable/abs__progress_horizontal_holo_dark.xml index 3c6146a46..bd19140ab --- a/actionbarsherlock/samples/shakespeare/res/layout/activity_titles.xml +++ b/actionbarsherlock/library/res/drawable/abs__progress_horizontal_holo_dark.xml @@ -4,9 +4,9 @@ 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. @@ -14,20 +14,19 @@ limitations under the License. --> - - + - + - + + + - + + + + diff --git a/actionbarsherlock/library/res/drawable/abs__progress_horizontal_holo_light.xml b/actionbarsherlock/library/res/drawable/abs__progress_horizontal_holo_light.xml new file mode 100755 index 000000000..321f07c8b --- /dev/null +++ b/actionbarsherlock/library/res/drawable/abs__progress_horizontal_holo_light.xml @@ -0,0 +1,32 @@ + + + + + + + + + + + + + + + + diff --git a/actionbarsherlock/library/res/drawable/abs__progress_medium_holo.xml b/actionbarsherlock/library/res/drawable/abs__progress_medium_holo.xml new file mode 100755 index 000000000..6d4814f86 --- /dev/null +++ b/actionbarsherlock/library/res/drawable/abs__progress_medium_holo.xml @@ -0,0 +1,34 @@ + + + + + + + + + + diff --git a/actionbarsherlock/library/res/drawable/abs__search_dropdown_dark.xml b/actionbarsherlock/library/res/drawable/abs__search_dropdown_dark.xml new file mode 100755 index 000000000..26284187a --- /dev/null +++ b/actionbarsherlock/library/res/drawable/abs__search_dropdown_dark.xml @@ -0,0 +1,22 @@ + + + + + + + + diff --git a/actionbarsherlock/library/res/drawable/abs__search_dropdown_light.xml b/actionbarsherlock/library/res/drawable/abs__search_dropdown_light.xml new file mode 100755 index 000000000..0d00c5878 --- /dev/null +++ b/actionbarsherlock/library/res/drawable/abs__search_dropdown_light.xml @@ -0,0 +1,22 @@ + + + + + + + + diff --git a/actionbarsherlock/library/res/drawable/abs__spinner_background_holo_dark.xml b/actionbarsherlock/library/res/drawable/abs__spinner_ab_holo_dark.xml old mode 100644 new mode 100755 similarity index 70% rename from actionbarsherlock/library/res/drawable/abs__spinner_background_holo_dark.xml rename to actionbarsherlock/library/res/drawable/abs__spinner_ab_holo_dark.xml index 8d3500404..4af5e22a9 --- a/actionbarsherlock/library/res/drawable/abs__spinner_background_holo_dark.xml +++ b/actionbarsherlock/library/res/drawable/abs__spinner_ab_holo_dark.xml @@ -1,5 +1,5 @@ - - + - + - + - - + + diff --git a/actionbarsherlock/library/res/drawable/abs__textfield_searchview_holo_dark.xml b/actionbarsherlock/library/res/drawable/abs__textfield_searchview_holo_dark.xml new file mode 100755 index 000000000..b6d58c040 --- /dev/null +++ b/actionbarsherlock/library/res/drawable/abs__textfield_searchview_holo_dark.xml @@ -0,0 +1,22 @@ + + + + + + + + diff --git a/actionbarsherlock/library/res/drawable/abs__textfield_searchview_holo_light.xml b/actionbarsherlock/library/res/drawable/abs__textfield_searchview_holo_light.xml new file mode 100755 index 000000000..3d6acf808 --- /dev/null +++ b/actionbarsherlock/library/res/drawable/abs__textfield_searchview_holo_light.xml @@ -0,0 +1,22 @@ + + + + + + + + diff --git a/actionbarsherlock/library/res/drawable/abs__textfield_searchview_right_holo_dark.xml b/actionbarsherlock/library/res/drawable/abs__textfield_searchview_right_holo_dark.xml new file mode 100755 index 000000000..05ff4eda5 --- /dev/null +++ b/actionbarsherlock/library/res/drawable/abs__textfield_searchview_right_holo_dark.xml @@ -0,0 +1,22 @@ + + + + + + + + diff --git a/actionbarsherlock/library/res/drawable/abs__textfield_searchview_right_holo_light.xml b/actionbarsherlock/library/res/drawable/abs__textfield_searchview_right_holo_light.xml new file mode 100755 index 000000000..f6d61e57a --- /dev/null +++ b/actionbarsherlock/library/res/drawable/abs__textfield_searchview_right_holo_light.xml @@ -0,0 +1,22 @@ + + + + + + + + diff --git a/actionbarsherlock/library/res/layout-large/abs__action_mode_close_item.xml b/actionbarsherlock/library/res/layout-large/abs__action_mode_close_item.xml new file mode 100755 index 000000000..8811dad8d --- /dev/null +++ b/actionbarsherlock/library/res/layout-large/abs__action_mode_close_item.xml @@ -0,0 +1,40 @@ + + + + + + + diff --git a/actionbarsherlock/library/res/layout-large/abs__screen_action_bar.xml b/actionbarsherlock/library/res/layout-large/abs__screen_action_bar.xml deleted file mode 100644 index 16c05d11b..000000000 --- a/actionbarsherlock/library/res/layout-large/abs__screen_action_bar.xml +++ /dev/null @@ -1,48 +0,0 @@ - - - - - - - - - - - \ No newline at end of file diff --git a/actionbarsherlock/library/res/layout-large/abs__screen_action_bar_overlay.xml b/actionbarsherlock/library/res/layout-large/abs__screen_action_bar_overlay.xml deleted file mode 100644 index a8243dd47..000000000 --- a/actionbarsherlock/library/res/layout-large/abs__screen_action_bar_overlay.xml +++ /dev/null @@ -1,49 +0,0 @@ - - - - - - - - - - - - \ No newline at end of file diff --git a/actionbarsherlock/library/res/layout-v14/sherlock_spinner_dropdown_item.xml b/actionbarsherlock/library/res/layout-v14/sherlock_spinner_dropdown_item.xml new file mode 100755 index 000000000..6c183c059 --- /dev/null +++ b/actionbarsherlock/library/res/layout-v14/sherlock_spinner_dropdown_item.xml @@ -0,0 +1,26 @@ + + + diff --git a/actionbarsherlock/library/res/layout-v14/sherlock_spinner_item.xml b/actionbarsherlock/library/res/layout-v14/sherlock_spinner_item.xml new file mode 100755 index 000000000..61dc02527 --- /dev/null +++ b/actionbarsherlock/library/res/layout-v14/sherlock_spinner_item.xml @@ -0,0 +1,26 @@ + + + diff --git a/actionbarsherlock/library/res/layout-land/abs__screen_action_bar.xml b/actionbarsherlock/library/res/layout-xlarge/abs__screen_action_bar.xml old mode 100644 new mode 100755 similarity index 68% rename from actionbarsherlock/library/res/layout-land/abs__screen_action_bar.xml rename to actionbarsherlock/library/res/layout-xlarge/abs__screen_action_bar.xml index 16c05d11b..040df44ab --- a/actionbarsherlock/library/res/layout-land/abs__screen_action_bar.xml +++ b/actionbarsherlock/library/res/layout-xlarge/abs__screen_action_bar.xml @@ -1,6 +1,5 @@ + android:layout_width="fill_parent" + android:layout_height="fill_parent"> + android:layout_height="wrap_content" + style="?attr/actionBarStyle"> + style="?attr/actionBarStyle" /> + - - \ No newline at end of file + android:foreground="?attr/windowContentOverlay" /> + diff --git a/actionbarsherlock/library/res/layout-land/abs__screen_action_bar_overlay.xml b/actionbarsherlock/library/res/layout-xlarge/abs__screen_action_bar_overlay.xml old mode 100644 new mode 100755 similarity index 58% rename from actionbarsherlock/library/res/layout-land/abs__screen_action_bar_overlay.xml rename to actionbarsherlock/library/res/layout-xlarge/abs__screen_action_bar_overlay.xml index a8243dd47..c64ef141b --- a/actionbarsherlock/library/res/layout-land/abs__screen_action_bar_overlay.xml +++ b/actionbarsherlock/library/res/layout-xlarge/abs__screen_action_bar_overlay.xml @@ -1,49 +1,49 @@ - + - + - - + style="?attr/actionBarStyle" /> + - - \ No newline at end of file + + diff --git a/actionbarsherlock/library/res/layout/abs__action_bar.xml b/actionbarsherlock/library/res/layout/abs__action_bar.xml deleted file mode 100644 index c5d37375c..000000000 --- a/actionbarsherlock/library/res/layout/abs__action_bar.xml +++ /dev/null @@ -1,91 +0,0 @@ - - - - - - - - - - - - - - - - - - - - diff --git a/actionbarsherlock/library/res/layout/abs__action_bar_home.xml b/actionbarsherlock/library/res/layout/abs__action_bar_home.xml old mode 100644 new mode 100755 index 5bff71ddc..5c1e9ec4b --- a/actionbarsherlock/library/res/layout/abs__action_bar_home.xml +++ b/actionbarsherlock/library/res/layout/abs__action_bar_home.xml @@ -1,38 +1,38 @@ - - - - - \ No newline at end of file + + + + + diff --git a/actionbarsherlock/library/res/layout/abs__action_bar_inline.xml b/actionbarsherlock/library/res/layout/abs__action_bar_inline.xml deleted file mode 100644 index ca30a5aea..000000000 --- a/actionbarsherlock/library/res/layout/abs__action_bar_inline.xml +++ /dev/null @@ -1,127 +0,0 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - \ No newline at end of file diff --git a/actionbarsherlock/library/res/layout/abs__action_bar_tab.xml b/actionbarsherlock/library/res/layout/abs__action_bar_tab.xml new file mode 100755 index 000000000..f46f7a044 --- /dev/null +++ b/actionbarsherlock/library/res/layout/abs__action_bar_tab.xml @@ -0,0 +1,7 @@ + + + \ No newline at end of file diff --git a/actionbarsherlock/library/res/layout/abs__action_bar_tab_bar_view.xml b/actionbarsherlock/library/res/layout/abs__action_bar_tab_bar_view.xml new file mode 100755 index 000000000..0d51220c9 --- /dev/null +++ b/actionbarsherlock/library/res/layout/abs__action_bar_tab_bar_view.xml @@ -0,0 +1,6 @@ + + + \ No newline at end of file diff --git a/actionbarsherlock/library/res/layout/abs__action_bar_tab_layout.xml b/actionbarsherlock/library/res/layout/abs__action_bar_tab_layout.xml deleted file mode 100644 index 8af6662eb..000000000 --- a/actionbarsherlock/library/res/layout/abs__action_bar_tab_layout.xml +++ /dev/null @@ -1,53 +0,0 @@ - - - - - - - diff --git a/actionbarsherlock/library/res/layout/abs__action_bar_title_item.xml b/actionbarsherlock/library/res/layout/abs__action_bar_title_item.xml old mode 100644 new mode 100755 index 1d37ef58c..dd69acada --- a/actionbarsherlock/library/res/layout/abs__action_bar_title_item.xml +++ b/actionbarsherlock/library/res/layout/abs__action_bar_title_item.xml @@ -1,6 +1,5 @@ - - + android:layout_width="wrap_content" + android:layout_height="wrap_content" + android:orientation="horizontal" + android:paddingRight="16dip" + android:background="?attr/actionBarItemBackground" + android:enabled="false"> + + + + + + + diff --git a/actionbarsherlock/library/res/layout/abs__action_menu_item_layout.xml b/actionbarsherlock/library/res/layout/abs__action_menu_item_layout.xml old mode 100644 new mode 100755 index c04adaf4e..13149fd63 --- a/actionbarsherlock/library/res/layout/abs__action_menu_item_layout.xml +++ b/actionbarsherlock/library/res/layout/abs__action_menu_item_layout.xml @@ -37,12 +37,13 @@ android:adjustViewBounds="true" android:background="@null" android:focusable="false" /> -