From 4b8b2ec5d2e9a8c01561b034bad47862653a5bce Mon Sep 17 00:00:00 2001 From: PaulK Date: Tue, 7 Jun 2011 23:20:46 +0200 Subject: Initial commit --- Android.mk | 26 ++ AndroidManifest.xml | 22 ++ res/drawable-hdpi/fire_breathing.jpg | Bin 0 -> 1144584 bytes res/drawable-hdpi/fire_breathing_small.jpg | Bin 0 -> 68319 bytes res/drawable-hdpi/glass_beach.jpg | Bin 0 -> 475723 bytes res/drawable-hdpi/glass_beach_small.jpg | Bin 0 -> 38744 bytes res/drawable-hdpi/landscape.jpg | Bin 0 -> 814727 bytes res/drawable-hdpi/landscape_small.jpg | Bin 0 -> 39591 bytes res/drawable-hdpi/replicant_logo.png | Bin 0 -> 2556 bytes res/drawable-hdpi/sunrise.jpg | Bin 0 -> 154137 bytes res/drawable-hdpi/sunrise_small.jpg | Bin 0 -> 48203 bytes res/drawable-hdpi/train.jpg | Bin 0 -> 357984 bytes res/drawable-hdpi/train_small.jpg | Bin 0 -> 38006 bytes res/drawable-mdpi/fire_breathing.jpg | Bin 0 -> 452875 bytes res/drawable-mdpi/fire_breathing_small.jpg | Bin 0 -> 36793 bytes res/drawable-mdpi/glass_beach.jpg | Bin 0 -> 210231 bytes res/drawable-mdpi/glass_beach_small.jpg | Bin 0 -> 25046 bytes res/drawable-mdpi/landscape.jpg | Bin 0 -> 308409 bytes res/drawable-mdpi/landscape_small.jpg | Bin 0 -> 20331 bytes res/drawable-mdpi/replicant_logo.png | Bin 0 -> 1731 bytes res/drawable-mdpi/sunrise.jpg | Bin 0 -> 87125 bytes res/drawable-mdpi/sunrise_small.jpg | Bin 0 -> 44436 bytes res/drawable-mdpi/train.jpg | Bin 0 -> 155928 bytes res/drawable-mdpi/train_small.jpg | Bin 0 -> 28483 bytes res/layout/wallpaper_chooser.xml | 58 +++++ res/layout/wallpaper_item.xml | 22 ++ res/values-ca/strings.xml | 6 + res/values-de/strings.xml | 6 + res/values-es/strings.xml | 6 + res/values-fr/strings.xml | 9 + res/values-hdpi/wallpapers.xml | 40 +++ res/values-it/strings.xml | 6 + res/values-ja/strings.xml | 6 + res/values-ko/strings.xml | 6 + res/values-mdpi/wallpapers.xml | 40 +++ res/values-nb/strings.xml | 6 + res/values-pl/strings.xml | 6 + res/values-pt-rPT/strings.xml | 6 + res/values-pt/strings.xml | 6 + res/values-zh-rTW/strings.xml | 6 + res/values/extra_wallpapers.xml | 25 ++ res/values/strings.xml | 9 + .../ReplicantWallpapers/WallpaperChooser.java | 281 +++++++++++++++++++++ 43 files changed, 598 insertions(+) create mode 100644 Android.mk create mode 100755 AndroidManifest.xml create mode 100644 res/drawable-hdpi/fire_breathing.jpg create mode 100644 res/drawable-hdpi/fire_breathing_small.jpg create mode 100644 res/drawable-hdpi/glass_beach.jpg create mode 100644 res/drawable-hdpi/glass_beach_small.jpg create mode 100644 res/drawable-hdpi/landscape.jpg create mode 100644 res/drawable-hdpi/landscape_small.jpg create mode 100644 res/drawable-hdpi/replicant_logo.png create mode 100644 res/drawable-hdpi/sunrise.jpg create mode 100644 res/drawable-hdpi/sunrise_small.jpg create mode 100644 res/drawable-hdpi/train.jpg create mode 100644 res/drawable-hdpi/train_small.jpg create mode 100644 res/drawable-mdpi/fire_breathing.jpg create mode 100644 res/drawable-mdpi/fire_breathing_small.jpg create mode 100644 res/drawable-mdpi/glass_beach.jpg create mode 100644 res/drawable-mdpi/glass_beach_small.jpg create mode 100644 res/drawable-mdpi/landscape.jpg create mode 100644 res/drawable-mdpi/landscape_small.jpg create mode 100644 res/drawable-mdpi/replicant_logo.png create mode 100644 res/drawable-mdpi/sunrise.jpg create mode 100644 res/drawable-mdpi/sunrise_small.jpg create mode 100644 res/drawable-mdpi/train.jpg create mode 100644 res/drawable-mdpi/train_small.jpg create mode 100755 res/layout/wallpaper_chooser.xml create mode 100755 res/layout/wallpaper_item.xml create mode 100644 res/values-ca/strings.xml create mode 100644 res/values-de/strings.xml create mode 100644 res/values-es/strings.xml create mode 100644 res/values-fr/strings.xml create mode 100644 res/values-hdpi/wallpapers.xml create mode 100644 res/values-it/strings.xml create mode 100644 res/values-ja/strings.xml create mode 100644 res/values-ko/strings.xml create mode 100644 res/values-mdpi/wallpapers.xml create mode 100644 res/values-nb/strings.xml create mode 100644 res/values-pl/strings.xml create mode 100755 res/values-pt-rPT/strings.xml create mode 100755 res/values-pt/strings.xml create mode 100644 res/values-zh-rTW/strings.xml create mode 100755 res/values/extra_wallpapers.xml create mode 100644 res/values/strings.xml create mode 100644 src/us/replicant/ReplicantWallpapers/WallpaperChooser.java diff --git a/Android.mk b/Android.mk new file mode 100644 index 0000000..8b3f40d --- /dev/null +++ b/Android.mk @@ -0,0 +1,26 @@ +# +# Copyright (C) 2008 The Android Open Source Project +# +# Licensed under the Apache License, Version 2.0 (the "License"); +# you may not use this file except in compliance with the License. +# You may obtain a copy of the License at +# +# http://www.apache.org/licenses/LICENSE-2.0 +# +# Unless required by applicable law or agreed to in writing, software +# distributed under the License is distributed on an "AS IS" BASIS, +# WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. +# See the License for the specific language governing permissions and +# limitations under the License. +# + +LOCAL_PATH := $(call my-dir) +include $(CLEAR_VARS) + +LOCAL_SRC_FILES := $(call all-subdir-java-files) + +LOCAL_MODULE_TAGS := optional + +LOCAL_PACKAGE_NAME := ReplicantWallpapers + +include $(BUILD_PACKAGE) diff --git a/AndroidManifest.xml b/AndroidManifest.xml new file mode 100755 index 0000000..6c0fcac --- /dev/null +++ b/AndroidManifest.xml @@ -0,0 +1,22 @@ + + + + + + + + + + + + + + + + diff --git a/res/drawable-hdpi/fire_breathing.jpg b/res/drawable-hdpi/fire_breathing.jpg new file mode 100644 index 0000000..4271138 Binary files /dev/null and b/res/drawable-hdpi/fire_breathing.jpg differ diff --git a/res/drawable-hdpi/fire_breathing_small.jpg b/res/drawable-hdpi/fire_breathing_small.jpg new file mode 100644 index 0000000..93ecae4 Binary files /dev/null and b/res/drawable-hdpi/fire_breathing_small.jpg differ diff --git a/res/drawable-hdpi/glass_beach.jpg b/res/drawable-hdpi/glass_beach.jpg new file mode 100644 index 0000000..384e844 Binary files /dev/null and b/res/drawable-hdpi/glass_beach.jpg differ diff --git a/res/drawable-hdpi/glass_beach_small.jpg b/res/drawable-hdpi/glass_beach_small.jpg new file mode 100644 index 0000000..24dd7ce Binary files /dev/null and b/res/drawable-hdpi/glass_beach_small.jpg differ diff --git a/res/drawable-hdpi/landscape.jpg b/res/drawable-hdpi/landscape.jpg new file mode 100644 index 0000000..a059f92 Binary files /dev/null and b/res/drawable-hdpi/landscape.jpg differ diff --git a/res/drawable-hdpi/landscape_small.jpg b/res/drawable-hdpi/landscape_small.jpg new file mode 100644 index 0000000..e3d8924 Binary files /dev/null and b/res/drawable-hdpi/landscape_small.jpg differ diff --git a/res/drawable-hdpi/replicant_logo.png b/res/drawable-hdpi/replicant_logo.png new file mode 100644 index 0000000..1601b8c Binary files /dev/null and b/res/drawable-hdpi/replicant_logo.png differ diff --git a/res/drawable-hdpi/sunrise.jpg b/res/drawable-hdpi/sunrise.jpg new file mode 100644 index 0000000..3f996c7 Binary files /dev/null and b/res/drawable-hdpi/sunrise.jpg differ diff --git a/res/drawable-hdpi/sunrise_small.jpg b/res/drawable-hdpi/sunrise_small.jpg new file mode 100644 index 0000000..4eeee80 Binary files /dev/null and b/res/drawable-hdpi/sunrise_small.jpg differ diff --git a/res/drawable-hdpi/train.jpg b/res/drawable-hdpi/train.jpg new file mode 100644 index 0000000..4105a7d Binary files /dev/null and b/res/drawable-hdpi/train.jpg differ diff --git a/res/drawable-hdpi/train_small.jpg b/res/drawable-hdpi/train_small.jpg new file mode 100644 index 0000000..a1bf40e Binary files /dev/null and b/res/drawable-hdpi/train_small.jpg differ diff --git a/res/drawable-mdpi/fire_breathing.jpg b/res/drawable-mdpi/fire_breathing.jpg new file mode 100644 index 0000000..26d3e93 Binary files /dev/null and b/res/drawable-mdpi/fire_breathing.jpg differ diff --git a/res/drawable-mdpi/fire_breathing_small.jpg b/res/drawable-mdpi/fire_breathing_small.jpg new file mode 100644 index 0000000..a7da6a0 Binary files /dev/null and b/res/drawable-mdpi/fire_breathing_small.jpg differ diff --git a/res/drawable-mdpi/glass_beach.jpg b/res/drawable-mdpi/glass_beach.jpg new file mode 100644 index 0000000..a297b03 Binary files /dev/null and b/res/drawable-mdpi/glass_beach.jpg differ diff --git a/res/drawable-mdpi/glass_beach_small.jpg b/res/drawable-mdpi/glass_beach_small.jpg new file mode 100644 index 0000000..9adf4e2 Binary files /dev/null and b/res/drawable-mdpi/glass_beach_small.jpg differ diff --git a/res/drawable-mdpi/landscape.jpg b/res/drawable-mdpi/landscape.jpg new file mode 100644 index 0000000..b5fc540 Binary files /dev/null and b/res/drawable-mdpi/landscape.jpg differ diff --git a/res/drawable-mdpi/landscape_small.jpg b/res/drawable-mdpi/landscape_small.jpg new file mode 100644 index 0000000..5accb26 Binary files /dev/null and b/res/drawable-mdpi/landscape_small.jpg differ diff --git a/res/drawable-mdpi/replicant_logo.png b/res/drawable-mdpi/replicant_logo.png new file mode 100644 index 0000000..1f19521 Binary files /dev/null and b/res/drawable-mdpi/replicant_logo.png differ diff --git a/res/drawable-mdpi/sunrise.jpg b/res/drawable-mdpi/sunrise.jpg new file mode 100644 index 0000000..ba477be Binary files /dev/null and b/res/drawable-mdpi/sunrise.jpg differ diff --git a/res/drawable-mdpi/sunrise_small.jpg b/res/drawable-mdpi/sunrise_small.jpg new file mode 100644 index 0000000..81f6c70 Binary files /dev/null and b/res/drawable-mdpi/sunrise_small.jpg differ diff --git a/res/drawable-mdpi/train.jpg b/res/drawable-mdpi/train.jpg new file mode 100644 index 0000000..a3b899d Binary files /dev/null and b/res/drawable-mdpi/train.jpg differ diff --git a/res/drawable-mdpi/train_small.jpg b/res/drawable-mdpi/train_small.jpg new file mode 100644 index 0000000..5fc2bd0 Binary files /dev/null and b/res/drawable-mdpi/train_small.jpg differ diff --git a/res/layout/wallpaper_chooser.xml b/res/layout/wallpaper_chooser.xml new file mode 100755 index 0000000..8644aed --- /dev/null +++ b/res/layout/wallpaper_chooser.xml @@ -0,0 +1,58 @@ + + + + + + + + + + + +