From 0e5be05bacd8cfaa7722dbe957605cf867023458 Mon Sep 17 00:00:00 2001 From: panxw Date: Mon, 15 Sep 2014 20:24:24 +0800 Subject: [PATCH] refactor --- AndroidImageIndicator/AndroidManifest.xml | 20 ---- AndroidImageIndicator/project.properties | 2 +- .../common/view/AutoPlayManager.java | 4 +- AndroidImageIndicatorSample/.classpath | 9 ++ AndroidImageIndicatorSample/.gitignore | 3 + AndroidImageIndicatorSample/.project | 33 ++++++ .../AndroidManifest.xml | 33 ++++++ .../proguard-project.txt | 20 ++++ .../project.properties | 15 +++ .../res/drawable-hdpi/guide_00.jpg | Bin .../res/drawable-hdpi/guide_01.jpg | Bin .../res/drawable-hdpi/ic_launcher.png | Bin 0 -> 4147 bytes .../res/drawable-hdpi/poster1.jpg | Bin .../res/drawable-hdpi/poster2.jpg | Bin .../res/drawable-hdpi/poster3.jpg | Bin .../res/drawable-ldpi/ic_launcher.png | Bin 0 -> 1723 bytes .../res/drawable-mdpi/ic_launcher.png | Bin 0 -> 2574 bytes .../res/layout/activity_indicator.xml | 22 ++-- .../res/layout/activity_indicator_auto.xml | 20 ++-- .../res/layout/activity_indicator_guide.xml | 40 +++---- .../res/layout/activity_indicator_network.xml | 12 ++ .../res/layout/activity_main.xml | 60 +++++----- .../res/values/dimens.xml | 7 ++ .../res/values/strings.xml | 8 ++ .../res/values/styles.xml | 20 ++++ .../screenshot/guider_00.jpg | Bin 0 -> 35448 bytes .../screenshot/guider_01.jpg | Bin 0 -> 36769 bytes .../screenshot/poster0.jpg | Bin 0 -> 10140 bytes .../sample/AutoImageIndicatorActivity.java | 3 +- .../sample/GuideImageIndicatorActivity.java | 107 +++++++++--------- .../view/sample/ImageIndicatorActivity.java | 77 +++++++------ .../sample/NetworkImageIndicatorActivity.java | 45 ++++++++ .../common/view/sample/SampleActivity.java | 69 +++++------ .../common/view/sample/SampleApp.java | 0 34 files changed, 409 insertions(+), 220 deletions(-) create mode 100644 AndroidImageIndicatorSample/.classpath create mode 100644 AndroidImageIndicatorSample/.gitignore create mode 100644 AndroidImageIndicatorSample/.project create mode 100644 AndroidImageIndicatorSample/AndroidManifest.xml create mode 100644 AndroidImageIndicatorSample/proguard-project.txt create mode 100644 AndroidImageIndicatorSample/project.properties rename {AndroidImageIndicator => AndroidImageIndicatorSample}/res/drawable-hdpi/guide_00.jpg (100%) rename {AndroidImageIndicator => AndroidImageIndicatorSample}/res/drawable-hdpi/guide_01.jpg (100%) create mode 100644 AndroidImageIndicatorSample/res/drawable-hdpi/ic_launcher.png rename {AndroidImageIndicator => AndroidImageIndicatorSample}/res/drawable-hdpi/poster1.jpg (100%) rename {AndroidImageIndicator => AndroidImageIndicatorSample}/res/drawable-hdpi/poster2.jpg (100%) rename {AndroidImageIndicator => AndroidImageIndicatorSample}/res/drawable-hdpi/poster3.jpg (100%) create mode 100644 AndroidImageIndicatorSample/res/drawable-ldpi/ic_launcher.png create mode 100644 AndroidImageIndicatorSample/res/drawable-mdpi/ic_launcher.png rename {AndroidImageIndicator => AndroidImageIndicatorSample}/res/layout/activity_indicator.xml (93%) rename {AndroidImageIndicator => AndroidImageIndicatorSample}/res/layout/activity_indicator_auto.xml (93%) rename {AndroidImageIndicator => AndroidImageIndicatorSample}/res/layout/activity_indicator_guide.xml (95%) create mode 100644 AndroidImageIndicatorSample/res/layout/activity_indicator_network.xml rename {AndroidImageIndicator => AndroidImageIndicatorSample}/res/layout/activity_main.xml (79%) create mode 100644 AndroidImageIndicatorSample/res/values/dimens.xml create mode 100644 AndroidImageIndicatorSample/res/values/strings.xml create mode 100644 AndroidImageIndicatorSample/res/values/styles.xml create mode 100644 AndroidImageIndicatorSample/screenshot/guider_00.jpg create mode 100644 AndroidImageIndicatorSample/screenshot/guider_01.jpg create mode 100644 AndroidImageIndicatorSample/screenshot/poster0.jpg rename {AndroidImageIndicator => AndroidImageIndicatorSample}/src/com/allthelucky/common/view/sample/AutoImageIndicatorActivity.java (93%) rename {AndroidImageIndicator => AndroidImageIndicatorSample}/src/com/allthelucky/common/view/sample/GuideImageIndicatorActivity.java (94%) rename {AndroidImageIndicator => AndroidImageIndicatorSample}/src/com/allthelucky/common/view/sample/ImageIndicatorActivity.java (93%) create mode 100644 AndroidImageIndicatorSample/src/com/allthelucky/common/view/sample/NetworkImageIndicatorActivity.java rename {AndroidImageIndicator => AndroidImageIndicatorSample}/src/com/allthelucky/common/view/sample/SampleActivity.java (87%) rename {AndroidImageIndicator => AndroidImageIndicatorSample}/src/com/allthelucky/common/view/sample/SampleApp.java (100%) diff --git a/AndroidImageIndicator/AndroidManifest.xml b/AndroidImageIndicator/AndroidManifest.xml index 251f79e..6d86b04 100644 --- a/AndroidImageIndicator/AndroidManifest.xml +++ b/AndroidImageIndicator/AndroidManifest.xml @@ -7,26 +7,6 @@ - - - - - - - - - - - - - \ No newline at end of file diff --git a/AndroidImageIndicator/project.properties b/AndroidImageIndicator/project.properties index 66304d5..484dab0 100644 --- a/AndroidImageIndicator/project.properties +++ b/AndroidImageIndicator/project.properties @@ -12,4 +12,4 @@ # Project target. target=android-17 -android.library.reference.1=../../android-app-http/android-app-http +android.library=true diff --git a/AndroidImageIndicator/src/com/allthelucky/common/view/AutoPlayManager.java b/AndroidImageIndicator/src/com/allthelucky/common/view/AutoPlayManager.java index 6e0088c..fdff4b2 100644 --- a/AndroidImageIndicator/src/com/allthelucky/common/view/AutoPlayManager.java +++ b/AndroidImageIndicator/src/com/allthelucky/common/view/AutoPlayManager.java @@ -81,7 +81,7 @@ public class AutoPlayManager { * 设置自动播放启动时间和间隔 * * @param startMils - * 启动时间ms(>5, 默认为8s) + * 启动时间ms(>2, 默认为8s) * @param intevelMils * 间隔ms(默认为3s) */ @@ -122,7 +122,7 @@ public class AutoPlayManager { protected void handleMessage(android.os.Message msg) { if (broadcastEnable) { if (System.currentTimeMillis() - - mImageIndicatorView.getRefreshTime() < 5 * 1000) {// 最近一次划动间隔小于2s + - mImageIndicatorView.getRefreshTime() < 2 * 1000) {// 最近一次划动间隔小于2s return; } if ((broadcastTimes != DEFAULT_TIMES) diff --git a/AndroidImageIndicatorSample/.classpath b/AndroidImageIndicatorSample/.classpath new file mode 100644 index 0000000..5176974 --- /dev/null +++ b/AndroidImageIndicatorSample/.classpath @@ -0,0 +1,9 @@ + + + + + + + + + diff --git a/AndroidImageIndicatorSample/.gitignore b/AndroidImageIndicatorSample/.gitignore new file mode 100644 index 0000000..04e6b04 --- /dev/null +++ b/AndroidImageIndicatorSample/.gitignore @@ -0,0 +1,3 @@ +.settings +bin/ +gen/ \ No newline at end of file diff --git a/AndroidImageIndicatorSample/.project b/AndroidImageIndicatorSample/.project new file mode 100644 index 0000000..cad61a3 --- /dev/null +++ b/AndroidImageIndicatorSample/.project @@ -0,0 +1,33 @@ + + + AndroidImageIndicatorSample + + + + + + com.android.ide.eclipse.adt.ResourceManagerBuilder + + + + + com.android.ide.eclipse.adt.PreCompilerBuilder + + + + + org.eclipse.jdt.core.javabuilder + + + + + com.android.ide.eclipse.adt.ApkBuilder + + + + + + com.android.ide.eclipse.adt.AndroidNature + org.eclipse.jdt.core.javanature + + diff --git a/AndroidImageIndicatorSample/AndroidManifest.xml b/AndroidImageIndicatorSample/AndroidManifest.xml new file mode 100644 index 0000000..e531b7d --- /dev/null +++ b/AndroidImageIndicatorSample/AndroidManifest.xml @@ -0,0 +1,33 @@ + + + + + + + + + + + + + + + + + + + + + \ No newline at end of file diff --git a/AndroidImageIndicatorSample/proguard-project.txt b/AndroidImageIndicatorSample/proguard-project.txt new file mode 100644 index 0000000..f2fe155 --- /dev/null +++ b/AndroidImageIndicatorSample/proguard-project.txt @@ -0,0 +1,20 @@ +# To enable ProGuard in your project, edit project.properties +# to define the proguard.config property as described in that file. +# +# Add project specific ProGuard rules here. +# By default, the flags in this file are appended to flags specified +# in ${sdk.dir}/tools/proguard/proguard-android.txt +# You can edit the include path and order by changing the ProGuard +# include property in project.properties. +# +# For more details, see +# http://developer.android.com/guide/developing/tools/proguard.html + +# Add any project specific keep options here: + +# If your project uses WebView with JS, uncomment the following +# and specify the fully qualified class name to the JavaScript interface +# class: +#-keepclassmembers class fqcn.of.javascript.interface.for.webview { +# public *; +#} diff --git a/AndroidImageIndicatorSample/project.properties b/AndroidImageIndicatorSample/project.properties new file mode 100644 index 0000000..1f1f149 --- /dev/null +++ b/AndroidImageIndicatorSample/project.properties @@ -0,0 +1,15 @@ +# This file is automatically generated by Android Tools. +# Do not modify this file -- YOUR CHANGES WILL BE ERASED! +# +# This file must be checked in Version Control Systems. +# +# To customize properties used by the Ant build system edit +# "ant.properties", and override values to adapt the script to your +# project structure. +# +# To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): +#proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt + +# Project target. +target=android-17 +android.library.reference.1=../AndroidImageIndicator diff --git a/AndroidImageIndicator/res/drawable-hdpi/guide_00.jpg b/AndroidImageIndicatorSample/res/drawable-hdpi/guide_00.jpg similarity index 100% rename from AndroidImageIndicator/res/drawable-hdpi/guide_00.jpg rename to AndroidImageIndicatorSample/res/drawable-hdpi/guide_00.jpg diff --git a/AndroidImageIndicator/res/drawable-hdpi/guide_01.jpg b/AndroidImageIndicatorSample/res/drawable-hdpi/guide_01.jpg similarity index 100% rename from AndroidImageIndicator/res/drawable-hdpi/guide_01.jpg rename to AndroidImageIndicatorSample/res/drawable-hdpi/guide_01.jpg diff --git a/AndroidImageIndicatorSample/res/drawable-hdpi/ic_launcher.png b/AndroidImageIndicatorSample/res/drawable-hdpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..8074c4c571b8cd19e27f4ee5545df367420686d7 GIT binary patch literal 4147 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 literal 0 HcmV?d00001 diff --git a/AndroidImageIndicator/res/drawable-hdpi/poster1.jpg b/AndroidImageIndicatorSample/res/drawable-hdpi/poster1.jpg similarity index 100% rename from AndroidImageIndicator/res/drawable-hdpi/poster1.jpg rename to AndroidImageIndicatorSample/res/drawable-hdpi/poster1.jpg diff --git a/AndroidImageIndicator/res/drawable-hdpi/poster2.jpg b/AndroidImageIndicatorSample/res/drawable-hdpi/poster2.jpg similarity index 100% rename from AndroidImageIndicator/res/drawable-hdpi/poster2.jpg rename to AndroidImageIndicatorSample/res/drawable-hdpi/poster2.jpg diff --git a/AndroidImageIndicator/res/drawable-hdpi/poster3.jpg b/AndroidImageIndicatorSample/res/drawable-hdpi/poster3.jpg similarity index 100% rename from AndroidImageIndicator/res/drawable-hdpi/poster3.jpg rename to AndroidImageIndicatorSample/res/drawable-hdpi/poster3.jpg diff --git a/AndroidImageIndicatorSample/res/drawable-ldpi/ic_launcher.png b/AndroidImageIndicatorSample/res/drawable-ldpi/ic_launcher.png new file mode 100644 index 0000000000000000000000000000000000000000..1095584ec21f71cd0afc9e0993aa2209671b590c GIT binary patch literal 1723 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 - - - + + + + \ No newline at end of file diff --git a/AndroidImageIndicator/res/layout/activity_indicator_auto.xml b/AndroidImageIndicatorSample/res/layout/activity_indicator_auto.xml similarity index 93% rename from AndroidImageIndicator/res/layout/activity_indicator_auto.xml rename to AndroidImageIndicatorSample/res/layout/activity_indicator_auto.xml index 6493e92..556a352 100644 --- a/AndroidImageIndicator/res/layout/activity_indicator_auto.xml +++ b/AndroidImageIndicatorSample/res/layout/activity_indicator_auto.xml @@ -1,11 +1,11 @@ - - - - + + + + \ No newline at end of file diff --git a/AndroidImageIndicator/res/layout/activity_indicator_guide.xml b/AndroidImageIndicatorSample/res/layout/activity_indicator_guide.xml similarity index 95% rename from AndroidImageIndicator/res/layout/activity_indicator_guide.xml rename to AndroidImageIndicatorSample/res/layout/activity_indicator_guide.xml index c856dd6..cf16184 100644 --- a/AndroidImageIndicator/res/layout/activity_indicator_guide.xml +++ b/AndroidImageIndicatorSample/res/layout/activity_indicator_guide.xml @@ -1,21 +1,21 @@ - - - - -