From 39de459a8621abfc91382ce7b4cdd37d09aaac12 Mon Sep 17 00:00:00 2001 From: Michael Jurka Date: Tue, 10 Dec 2013 23:47:28 +0100 Subject: Revert "Move wallpaper picker code to a separate directory" This reverts commit 8e88cb84781907afb7cca80581fea2277264fd2c. --- res/drawable-hdpi/ic_actionbar_accept.png | Bin 0 -> 1335 bytes res/drawable-hdpi/ic_images.png | Bin 0 -> 1935 bytes res/drawable-hdpi/tile_picker_focused.9.png | Bin 0 -> 168 bytes res/drawable-hdpi/tile_picker_pressed.9.png | Bin 0 -> 144 bytes res/drawable-hdpi/tile_picker_selected.9.png | Bin 0 -> 165 bytes res/drawable-hdpi/tile_shadow_bottom.9.png | Bin 0 -> 159 bytes res/drawable-hdpi/tile_shadow_top.9.png | Bin 0 -> 148 bytes res/drawable-mdpi/ic_actionbar_accept.png | Bin 0 -> 1191 bytes res/drawable-mdpi/ic_images.png | Bin 0 -> 1332 bytes res/drawable-mdpi/tile_picker_focused.9.png | Bin 0 -> 165 bytes res/drawable-mdpi/tile_picker_pressed.9.png | Bin 0 -> 142 bytes res/drawable-mdpi/tile_picker_selected.9.png | Bin 0 -> 159 bytes res/drawable-mdpi/tile_shadow_bottom.9.png | Bin 0 -> 140 bytes res/drawable-mdpi/tile_shadow_top.9.png | Bin 0 -> 138 bytes res/drawable-xhdpi/ic_actionbar_accept.png | Bin 0 -> 1599 bytes res/drawable-xhdpi/ic_images.png | Bin 0 -> 2480 bytes res/drawable-xhdpi/tile_picker_focused.9.png | Bin 0 -> 174 bytes res/drawable-xhdpi/tile_picker_pressed.9.png | Bin 0 -> 147 bytes res/drawable-xhdpi/tile_picker_selected.9.png | Bin 0 -> 167 bytes res/drawable-xhdpi/tile_shadow_bottom.9.png | Bin 0 -> 164 bytes res/drawable-xhdpi/tile_shadow_top.9.png | Bin 0 -> 151 bytes res/drawable-xxhdpi/ic_images.png | Bin 0 -> 2097 bytes res/drawable-xxhdpi/tile_picker_focused.9.png | Bin 0 -> 189 bytes res/drawable-xxhdpi/tile_picker_pressed.9.png | Bin 0 -> 154 bytes res/drawable-xxhdpi/tile_picker_selected.9.png | Bin 0 -> 175 bytes res/drawable-xxhdpi/tile_shadow_bottom.9.png | Bin 0 -> 185 bytes res/drawable-xxhdpi/tile_shadow_top.9.png | Bin 0 -> 169 bytes res/drawable/wallpaper_tile_fg.xml | 23 ++++++ res/layout/actionbar_set_wallpaper.xml | 34 +++++++++ res/layout/wallpaper_cropper.xml | 39 +++++++++++ res/layout/wallpaper_picker.xml | 77 +++++++++++++++++++++ res/layout/wallpaper_picker_image_picker_item.xml | 42 +++++++++++ res/layout/wallpaper_picker_item.xml | 30 ++++++++ .../wallpaper_picker_live_wallpaper_item.xml | 49 +++++++++++++ res/layout/wallpaper_picker_third_party_item.xml | 40 +++++++++++ res/menu/cab_delete_wallpapers.xml | 27 ++++++++ res/mipmap-hdpi/ic_launcher_wallpaper.png | Bin 0 -> 4418 bytes res/mipmap-mdpi/ic_launcher_wallpaper.png | Bin 0 -> 2871 bytes res/mipmap-xhdpi/ic_launcher_wallpaper.png | Bin 0 -> 6061 bytes res/mipmap-xxhdpi/ic_launcher_wallpaper.png | Bin 0 -> 7596 bytes res/values-nodpi/wallpapers.xml | 21 ++++++ res/values-sw720dp/dimens.xml | 4 ++ res/values-sw720dp/styles.xml | 6 ++ res/values/colors.xml | 1 + res/values/dimens.xml | 5 ++ res/values/strings.xml | 32 +++++++++ res/values/styles.xml | 17 +++++ 47 files changed, 447 insertions(+) create mode 100755 res/drawable-hdpi/ic_actionbar_accept.png create mode 100644 res/drawable-hdpi/ic_images.png create mode 100644 res/drawable-hdpi/tile_picker_focused.9.png create mode 100644 res/drawable-hdpi/tile_picker_pressed.9.png create mode 100644 res/drawable-hdpi/tile_picker_selected.9.png create mode 100644 res/drawable-hdpi/tile_shadow_bottom.9.png create mode 100644 res/drawable-hdpi/tile_shadow_top.9.png create mode 100755 res/drawable-mdpi/ic_actionbar_accept.png create mode 100644 res/drawable-mdpi/ic_images.png create mode 100644 res/drawable-mdpi/tile_picker_focused.9.png create mode 100644 res/drawable-mdpi/tile_picker_pressed.9.png create mode 100644 res/drawable-mdpi/tile_picker_selected.9.png create mode 100644 res/drawable-mdpi/tile_shadow_bottom.9.png create mode 100644 res/drawable-mdpi/tile_shadow_top.9.png create mode 100755 res/drawable-xhdpi/ic_actionbar_accept.png create mode 100644 res/drawable-xhdpi/ic_images.png create mode 100644 res/drawable-xhdpi/tile_picker_focused.9.png create mode 100644 res/drawable-xhdpi/tile_picker_pressed.9.png create mode 100644 res/drawable-xhdpi/tile_picker_selected.9.png create mode 100644 res/drawable-xhdpi/tile_shadow_bottom.9.png create mode 100644 res/drawable-xhdpi/tile_shadow_top.9.png create mode 100644 res/drawable-xxhdpi/ic_images.png create mode 100644 res/drawable-xxhdpi/tile_picker_focused.9.png create mode 100644 res/drawable-xxhdpi/tile_picker_pressed.9.png create mode 100644 res/drawable-xxhdpi/tile_picker_selected.9.png create mode 100644 res/drawable-xxhdpi/tile_shadow_bottom.9.png create mode 100644 res/drawable-xxhdpi/tile_shadow_top.9.png create mode 100644 res/drawable/wallpaper_tile_fg.xml create mode 100644 res/layout/actionbar_set_wallpaper.xml create mode 100644 res/layout/wallpaper_cropper.xml create mode 100644 res/layout/wallpaper_picker.xml create mode 100644 res/layout/wallpaper_picker_image_picker_item.xml create mode 100644 res/layout/wallpaper_picker_item.xml create mode 100644 res/layout/wallpaper_picker_live_wallpaper_item.xml create mode 100644 res/layout/wallpaper_picker_third_party_item.xml create mode 100644 res/menu/cab_delete_wallpapers.xml create mode 100644 res/mipmap-hdpi/ic_launcher_wallpaper.png create mode 100644 res/mipmap-mdpi/ic_launcher_wallpaper.png create mode 100644 res/mipmap-xhdpi/ic_launcher_wallpaper.png create mode 100644 res/mipmap-xxhdpi/ic_launcher_wallpaper.png create mode 100644 res/values-nodpi/wallpapers.xml (limited to 'res') diff --git a/res/drawable-hdpi/ic_actionbar_accept.png b/res/drawable-hdpi/ic_actionbar_accept.png new file mode 100755 index 000000000..53cf6877e Binary files /dev/null and b/res/drawable-hdpi/ic_actionbar_accept.png differ diff --git a/res/drawable-hdpi/ic_images.png b/res/drawable-hdpi/ic_images.png new file mode 100644 index 000000000..0003c6c65 Binary files /dev/null and b/res/drawable-hdpi/ic_images.png differ diff --git a/res/drawable-hdpi/tile_picker_focused.9.png b/res/drawable-hdpi/tile_picker_focused.9.png new file mode 100644 index 000000000..c72d6a2c6 Binary files /dev/null and b/res/drawable-hdpi/tile_picker_focused.9.png differ diff --git a/res/drawable-hdpi/tile_picker_pressed.9.png b/res/drawable-hdpi/tile_picker_pressed.9.png new file mode 100644 index 000000000..44c65ac3c Binary files /dev/null and b/res/drawable-hdpi/tile_picker_pressed.9.png differ diff --git a/res/drawable-hdpi/tile_picker_selected.9.png b/res/drawable-hdpi/tile_picker_selected.9.png new file mode 100644 index 000000000..461bacbcb Binary files /dev/null and b/res/drawable-hdpi/tile_picker_selected.9.png differ diff --git a/res/drawable-hdpi/tile_shadow_bottom.9.png b/res/drawable-hdpi/tile_shadow_bottom.9.png new file mode 100644 index 000000000..e80558bad Binary files /dev/null and b/res/drawable-hdpi/tile_shadow_bottom.9.png differ diff --git a/res/drawable-hdpi/tile_shadow_top.9.png b/res/drawable-hdpi/tile_shadow_top.9.png new file mode 100644 index 000000000..7e93865e7 Binary files /dev/null and b/res/drawable-hdpi/tile_shadow_top.9.png differ diff --git a/res/drawable-mdpi/ic_actionbar_accept.png b/res/drawable-mdpi/ic_actionbar_accept.png new file mode 100755 index 000000000..35cda8e11 Binary files /dev/null and b/res/drawable-mdpi/ic_actionbar_accept.png differ diff --git a/res/drawable-mdpi/ic_images.png b/res/drawable-mdpi/ic_images.png new file mode 100644 index 000000000..aabc1237a Binary files /dev/null and b/res/drawable-mdpi/ic_images.png differ diff --git a/res/drawable-mdpi/tile_picker_focused.9.png b/res/drawable-mdpi/tile_picker_focused.9.png new file mode 100644 index 000000000..13b325b87 Binary files /dev/null and b/res/drawable-mdpi/tile_picker_focused.9.png differ diff --git a/res/drawable-mdpi/tile_picker_pressed.9.png b/res/drawable-mdpi/tile_picker_pressed.9.png new file mode 100644 index 000000000..4e8196d36 Binary files /dev/null and b/res/drawable-mdpi/tile_picker_pressed.9.png differ diff --git a/res/drawable-mdpi/tile_picker_selected.9.png b/res/drawable-mdpi/tile_picker_selected.9.png new file mode 100644 index 000000000..eee69ec6d Binary files /dev/null and b/res/drawable-mdpi/tile_picker_selected.9.png differ diff --git a/res/drawable-mdpi/tile_shadow_bottom.9.png b/res/drawable-mdpi/tile_shadow_bottom.9.png new file mode 100644 index 000000000..d95787bac Binary files /dev/null and b/res/drawable-mdpi/tile_shadow_bottom.9.png differ diff --git a/res/drawable-mdpi/tile_shadow_top.9.png b/res/drawable-mdpi/tile_shadow_top.9.png new file mode 100644 index 000000000..8da913cc4 Binary files /dev/null and b/res/drawable-mdpi/tile_shadow_top.9.png differ diff --git a/res/drawable-xhdpi/ic_actionbar_accept.png b/res/drawable-xhdpi/ic_actionbar_accept.png new file mode 100755 index 000000000..b52dc3701 Binary files /dev/null and b/res/drawable-xhdpi/ic_actionbar_accept.png differ diff --git a/res/drawable-xhdpi/ic_images.png b/res/drawable-xhdpi/ic_images.png new file mode 100644 index 000000000..3f21faf8f Binary files /dev/null and b/res/drawable-xhdpi/ic_images.png differ diff --git a/res/drawable-xhdpi/tile_picker_focused.9.png b/res/drawable-xhdpi/tile_picker_focused.9.png new file mode 100644 index 000000000..279e85963 Binary files /dev/null and b/res/drawable-xhdpi/tile_picker_focused.9.png differ diff --git a/res/drawable-xhdpi/tile_picker_pressed.9.png b/res/drawable-xhdpi/tile_picker_pressed.9.png new file mode 100644 index 000000000..abe0e0080 Binary files /dev/null and b/res/drawable-xhdpi/tile_picker_pressed.9.png differ diff --git a/res/drawable-xhdpi/tile_picker_selected.9.png b/res/drawable-xhdpi/tile_picker_selected.9.png new file mode 100644 index 000000000..b047591ac Binary files /dev/null and b/res/drawable-xhdpi/tile_picker_selected.9.png differ diff --git a/res/drawable-xhdpi/tile_shadow_bottom.9.png b/res/drawable-xhdpi/tile_shadow_bottom.9.png new file mode 100644 index 000000000..81571f3b7 Binary files /dev/null and b/res/drawable-xhdpi/tile_shadow_bottom.9.png differ diff --git a/res/drawable-xhdpi/tile_shadow_top.9.png b/res/drawable-xhdpi/tile_shadow_top.9.png new file mode 100644 index 000000000..8503a59fe Binary files /dev/null and b/res/drawable-xhdpi/tile_shadow_top.9.png differ diff --git a/res/drawable-xxhdpi/ic_images.png b/res/drawable-xxhdpi/ic_images.png new file mode 100644 index 000000000..d00db9a00 Binary files /dev/null and b/res/drawable-xxhdpi/ic_images.png differ diff --git a/res/drawable-xxhdpi/tile_picker_focused.9.png b/res/drawable-xxhdpi/tile_picker_focused.9.png new file mode 100644 index 000000000..1004c14b8 Binary files /dev/null and b/res/drawable-xxhdpi/tile_picker_focused.9.png differ diff --git a/res/drawable-xxhdpi/tile_picker_pressed.9.png b/res/drawable-xxhdpi/tile_picker_pressed.9.png new file mode 100644 index 000000000..9658444a1 Binary files /dev/null and b/res/drawable-xxhdpi/tile_picker_pressed.9.png differ diff --git a/res/drawable-xxhdpi/tile_picker_selected.9.png b/res/drawable-xxhdpi/tile_picker_selected.9.png new file mode 100644 index 000000000..a3cd30369 Binary files /dev/null and b/res/drawable-xxhdpi/tile_picker_selected.9.png differ diff --git a/res/drawable-xxhdpi/tile_shadow_bottom.9.png b/res/drawable-xxhdpi/tile_shadow_bottom.9.png new file mode 100644 index 000000000..55250f041 Binary files /dev/null and b/res/drawable-xxhdpi/tile_shadow_bottom.9.png differ diff --git a/res/drawable-xxhdpi/tile_shadow_top.9.png b/res/drawable-xxhdpi/tile_shadow_top.9.png new file mode 100644 index 000000000..3f2263364 Binary files /dev/null and b/res/drawable-xxhdpi/tile_shadow_top.9.png differ diff --git a/res/drawable/wallpaper_tile_fg.xml b/res/drawable/wallpaper_tile_fg.xml new file mode 100644 index 000000000..c299f32c6 --- /dev/null +++ b/res/drawable/wallpaper_tile_fg.xml @@ -0,0 +1,23 @@ + + + + + + + + + + diff --git a/res/layout/actionbar_set_wallpaper.xml b/res/layout/actionbar_set_wallpaper.xml new file mode 100644 index 000000000..1622742a5 --- /dev/null +++ b/res/layout/actionbar_set_wallpaper.xml @@ -0,0 +1,34 @@ + + + + + + diff --git a/res/layout/wallpaper_cropper.xml b/res/layout/wallpaper_cropper.xml new file mode 100644 index 000000000..abb860898 --- /dev/null +++ b/res/layout/wallpaper_cropper.xml @@ -0,0 +1,39 @@ + + + + + + + diff --git a/res/layout/wallpaper_picker.xml b/res/layout/wallpaper_picker.xml new file mode 100644 index 000000000..c36493d2f --- /dev/null +++ b/res/layout/wallpaper_picker.xml @@ -0,0 +1,77 @@ + + + + + + + + + + + + + + + + + + diff --git a/res/layout/wallpaper_picker_image_picker_item.xml b/res/layout/wallpaper_picker_image_picker_item.xml new file mode 100644 index 000000000..ae3c43d8e --- /dev/null +++ b/res/layout/wallpaper_picker_image_picker_item.xml @@ -0,0 +1,42 @@ + + + + + + + diff --git a/res/layout/wallpaper_picker_item.xml b/res/layout/wallpaper_picker_item.xml new file mode 100644 index 000000000..0ac8f97fb --- /dev/null +++ b/res/layout/wallpaper_picker_item.xml @@ -0,0 +1,30 @@ + + + + + + diff --git a/res/layout/wallpaper_picker_live_wallpaper_item.xml b/res/layout/wallpaper_picker_live_wallpaper_item.xml new file mode 100644 index 000000000..29fdb1b82 --- /dev/null +++ b/res/layout/wallpaper_picker_live_wallpaper_item.xml @@ -0,0 +1,49 @@ + + + + + + + + diff --git a/res/layout/wallpaper_picker_third_party_item.xml b/res/layout/wallpaper_picker_third_party_item.xml new file mode 100644 index 000000000..68661bc00 --- /dev/null +++ b/res/layout/wallpaper_picker_third_party_item.xml @@ -0,0 +1,40 @@ + + + + + + + diff --git a/res/menu/cab_delete_wallpapers.xml b/res/menu/cab_delete_wallpapers.xml new file mode 100644 index 000000000..38ac5c4d6 --- /dev/null +++ b/res/menu/cab_delete_wallpapers.xml @@ -0,0 +1,27 @@ + + + + + + diff --git a/res/mipmap-hdpi/ic_launcher_wallpaper.png b/res/mipmap-hdpi/ic_launcher_wallpaper.png new file mode 100644 index 000000000..affee851d Binary files /dev/null and b/res/mipmap-hdpi/ic_launcher_wallpaper.png differ diff --git a/res/mipmap-mdpi/ic_launcher_wallpaper.png b/res/mipmap-mdpi/ic_launcher_wallpaper.png new file mode 100644 index 000000000..cb4443bdb Binary files /dev/null and b/res/mipmap-mdpi/ic_launcher_wallpaper.png differ diff --git a/res/mipmap-xhdpi/ic_launcher_wallpaper.png b/res/mipmap-xhdpi/ic_launcher_wallpaper.png new file mode 100644 index 000000000..60f8dceec Binary files /dev/null and b/res/mipmap-xhdpi/ic_launcher_wallpaper.png differ diff --git a/res/mipmap-xxhdpi/ic_launcher_wallpaper.png b/res/mipmap-xxhdpi/ic_launcher_wallpaper.png new file mode 100644 index 000000000..023fb5886 Binary files /dev/null and b/res/mipmap-xxhdpi/ic_launcher_wallpaper.png differ diff --git a/res/values-nodpi/wallpapers.xml b/res/values-nodpi/wallpapers.xml new file mode 100644 index 000000000..1e340e4b2 --- /dev/null +++ b/res/values-nodpi/wallpapers.xml @@ -0,0 +1,21 @@ + + + + + + + diff --git a/res/values-sw720dp/dimens.xml b/res/values-sw720dp/dimens.xml index 9ae155b3c..01227e147 100644 --- a/res/values-sw720dp/dimens.xml +++ b/res/values-sw720dp/dimens.xml @@ -21,6 +21,10 @@ 8dip 8dip + + 196dp + 140dp + 0dp diff --git a/res/values-sw720dp/styles.xml b/res/values-sw720dp/styles.xml index e1f9ab45a..9738a124b 100644 --- a/res/values-sw720dp/styles.xml +++ b/res/values-sw720dp/styles.xml @@ -51,6 +51,12 @@ + + + + + + +