├── .idea ├── .name ├── BlogResForGitHub.iml ├── compiler.xml ├── copyright │ └── profiles_settings.xml ├── encodings.xml ├── misc.xml ├── modules.xml ├── vcs.xml └── workspace.xml ├── .zip ├── 《 Animation动画详解(四)——ValueAnimator基本使用》.zip ├── 《 Animation动画详解(四)——ValueAnimator基本使用》 ├── BlogValueAnimator1 │ ├── AndroidManifest.xml │ ├── BlogValueAnimator1.iml │ ├── BlogValueAnimator1.ipr │ ├── BlogValueAnimator1.iws │ ├── ant.properties │ ├── build.xml │ ├── gen │ │ └── com │ │ │ └── harvic │ │ │ └── myapp │ │ │ ├── BuildConfig.java │ │ │ ├── Manifest.java │ │ │ └── R.java │ ├── local.properties │ ├── out │ │ └── production │ │ │ └── BlogValueAnimator1 │ │ │ ├── BlogValueAnimator1.apk │ │ │ ├── BlogValueAnimator1.unaligned.apk │ │ │ └── com │ │ │ └── harvic │ │ │ └── myapp │ │ │ ├── BuildConfig.class │ │ │ ├── MyActivity$1.class │ │ │ ├── MyActivity$2.class │ │ │ ├── MyActivity$3.class │ │ │ ├── MyActivity$4.class │ │ │ ├── MyActivity.class │ │ │ ├── R$attr.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ └── R.class │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── harvic │ │ └── myapp │ │ └── MyActivity.java ├── BlogValueAnimator2 │ ├── AndroidManifest.xml │ ├── BlogValueAnimator2.iml │ ├── BlogValueAnimator2.ipr │ ├── BlogValueAnimator2.iws │ ├── ant.properties │ ├── build.xml │ ├── gen │ │ └── com │ │ │ └── harvic │ │ │ └── BlogValueAnimator2 │ │ │ ├── BuildConfig.java │ │ │ ├── Manifest.java │ │ │ └── R.java │ ├── local.properties │ ├── out │ │ └── production │ │ │ └── BlogValueAnimator2 │ │ │ ├── BlogValueAnimator2.apk │ │ │ ├── BlogValueAnimator2.unaligned.apk │ │ │ └── com │ │ │ └── harvic │ │ │ └── BlogValueAnimator2 │ │ │ ├── BuildConfig.class │ │ │ ├── MyActivity$1.class │ │ │ ├── MyActivity$2.class │ │ │ ├── MyActivity$3.class │ │ │ ├── MyActivity$4.class │ │ │ ├── MyActivity$5.class │ │ │ ├── MyActivity$6.class │ │ │ ├── MyActivity$7.class │ │ │ ├── MyActivity$8.class │ │ │ ├── MyActivity$9.class │ │ │ ├── MyActivity.class │ │ │ ├── R$attr.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ └── R.class │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ │ ├── drawable-hdpi │ │ │ └── ic_launcher.png │ │ ├── drawable-ldpi │ │ │ └── ic_launcher.png │ │ ├── drawable-mdpi │ │ │ └── ic_launcher.png │ │ ├── layout │ │ │ └── main.xml │ │ └── values │ │ │ └── strings.xml │ └── src │ │ └── com │ │ └── harvic │ │ └── BlogValueAnimator2 │ │ └── MyActivity.java ├── blog1.gif ├── blog10.png ├── blog2.png ├── blog3.gif ├── blog4.gif ├── blog5.gif ├── blog6.gif ├── blog7.gif ├── blog8.gif ├── blog9.png └── try_tween_anim_click │ ├── AndroidManifest.xml │ ├── ant.properties │ ├── build.xml │ ├── gen │ └── com │ │ └── example │ │ └── try_tween_anim_click │ │ ├── BuildConfig.java │ │ ├── Manifest.java │ │ └── R.java │ ├── local.properties │ ├── out │ └── production │ │ └── try_tween_anim_click │ │ ├── com │ │ └── example │ │ │ └── try_tween_anim_click │ │ │ ├── BuildConfig.class │ │ │ ├── MyActivity$1.class │ │ │ ├── MyActivity$2.class │ │ │ ├── MyActivity.class │ │ │ ├── R$attr.class │ │ │ ├── R$drawable.class │ │ │ ├── R$id.class │ │ │ ├── R$layout.class │ │ │ ├── R$string.class │ │ │ └── R.class │ │ ├── try_tween_anim_click.apk │ │ └── try_tween_anim_click.unaligned.apk │ ├── proguard-project.txt │ ├── project.properties │ ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml │ ├── src │ └── com │ │ └── example │ │ └── try_tween_anim_click │ │ └── MyActivity.java │ ├── try_tween_anim_click.iml │ ├── try_tween_anim_click.ipr │ └── try_tween_anim_click.iws ├── 《Animation动画详解(五)——ValueAnimator高级进阶(一)》.zip ├── 《Animation动画详解(六)——ValueAnimator高级进阶(二)》.zip └── 《Animation动画详解(六)——ValueAnimator高级进阶(二)》 ├── BlogValueAnimator4 ├── AndroidManifest.xml ├── BlogValueAnimator4.iml ├── BlogValueAnimator4.ipr ├── BlogValueAnimator4.iws ├── ant.properties ├── build.xml ├── gen │ └── com │ │ └── harvic │ │ └── BlogValueAnimator4 │ │ ├── BuildConfig.java │ │ ├── Manifest.java │ │ └── R.java ├── local.properties ├── out │ └── production │ │ └── BlogValueAnimator4 │ │ ├── BlogValueAnimator4.apk │ │ ├── BlogValueAnimator4.unaligned.apk │ │ └── com │ │ └── harvic │ │ └── BlogValueAnimator4 │ │ ├── BuildConfig.class │ │ ├── CharEvaluator.class │ │ ├── MyActivity$1.class │ │ ├── MyActivity$2.class │ │ ├── MyActivity$3.class │ │ ├── MyActivity$4.class │ │ ├── MyActivity$5.class │ │ ├── MyActivity.class │ │ ├── MyPointView$1.class │ │ ├── MyPointView.class │ │ ├── Point.class │ │ ├── PointEvaluator.class │ │ ├── R$attr.class │ │ ├── R$drawable.class │ │ ├── R$id.class │ │ ├── R$layout.class │ │ ├── R$string.class │ │ └── R.class ├── proguard-project.txt ├── project.properties ├── res │ ├── drawable-hdpi │ │ └── ic_launcher.png │ ├── drawable-ldpi │ │ └── ic_launcher.png │ ├── drawable-mdpi │ │ └── ic_launcher.png │ ├── layout │ │ └── main.xml │ └── values │ │ └── strings.xml └── src │ └── com │ └── harvic │ └── BlogValueAnimator4 │ ├── CharEvaluator.java │ ├── MyActivity.java │ ├── MyPointView.java │ ├── Point.java │ └── PointEvaluator.java ├── blog1.gif └── blog2.gif /.idea/.name: -------------------------------------------------------------------------------- 1 | BlogResForGitHub -------------------------------------------------------------------------------- /.idea/BlogResForGitHub.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | -------------------------------------------------------------------------------- /.idea/compiler.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | -------------------------------------------------------------------------------- /.idea/copyright/profiles_settings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | -------------------------------------------------------------------------------- /.idea/encodings.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/misc.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 1.6 26 | 27 | 32 | 33 | 34 | 35 | 36 | 37 | -------------------------------------------------------------------------------- /.idea/modules.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | -------------------------------------------------------------------------------- /.idea/vcs.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | -------------------------------------------------------------------------------- /.idea/workspace.xml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 7 | 8 | 9 | 16 | 17 | 18 | 20 | 21 | 22 | 23 | 24 | 25 | 27 | 28 | 39 | 42 | 43 | 44 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 81 | 82 | 83 | 84 | 87 | 88 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 110 | 111 | 112 | 139 | 140 | 141 | 169 | 170 | 177 | 178 | 179 | 192 | 193 | 194 | 201 | 204 | 206 | 207 | 208 | 209 | 210 | 211 | 225 | 226 | 227 | 228 | 229 | 230 | 231 | 232 | 246 | 247 | 248 | 249 | 250 | 251 | 252 | 253 | 254 | 255 | 256 | 257 | 271 | 272 | 273 | 284 | 285 | 292 | 293 | 294 | 295 | 313 | 320 | 321 | 322 | 323 | 341 | 348 | 349 | 350 | 351 | 352 | 353 | 1453281515771 354 | 357 | 358 | 359 | 360 | 361 | 362 | 363 | 364 | 365 | 366 | 367 | 368 | 369 | 370 | 371 | 372 | 373 | 374 | 375 | 376 | 377 | 378 | 379 | 380 | 381 | 382 | 383 | 384 | 385 | 386 | 387 | 388 | 390 | 391 | 392 | 393 | 394 | -------------------------------------------------------------------------------- /.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvic/BlogResForGitHub/7f68b674a3b389540488b78e96e463ecea23faec/.zip -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》.zip: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvic/BlogResForGitHub/7f68b674a3b389540488b78e96e463ecea23faec/《 Animation动画详解(四)——ValueAnimator基本使用》.zip -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/AndroidManifest.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 | 8 | 11 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/BlogValueAnimator1.iml: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 5 | 6 | 8 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/BlogValueAnimator1.ipr: -------------------------------------------------------------------------------- 1 | 2 | 3 | 4 | 9 | 10 | 11 | 12 | 13 | 14 | 15 | 16 | 17 | 18 | 19 | 20 | 21 | 22 | 23 | 24 | 25 | 26 | 27 | 28 | 29 | 30 | 31 | 32 | 33 | 34 | 35 | 36 | 37 | 42 | 43 | 44 | 45 | 46 | 47 | 48 | 49 | 50 | 51 | 52 | 53 | 54 | 55 | 56 | 57 | 58 | 59 | 60 | 61 | 62 | 63 | 64 | 65 | 66 | 67 | 68 | 69 | 70 | 71 | 72 | 73 | 74 | 75 | 76 | 77 | 78 | 79 | 80 | 81 | 82 | 83 | 84 | 85 | 86 | 87 | 88 | 89 | 90 | 91 | 92 | 93 | 94 | 95 | 96 | 97 | 98 | 99 | 100 | 101 | 102 | 103 | 104 | 105 | 106 | 107 | 108 | 109 | 110 | 111 | 112 | 113 | 114 | 115 | 116 | 117 | 118 | 119 | 120 | 121 | 122 | 123 | 124 | 125 | 126 | 127 | 128 | 129 | 130 | 131 | 132 | 133 | 134 | 135 | 136 | 137 | 138 | 139 | 140 | 141 | 142 | 143 | 144 | 145 | 146 | 147 | 148 | 149 | 150 | 151 | 152 | 153 | 154 | 155 | 156 | 157 | 158 | 159 | 160 | 161 | 162 | 163 | 164 | 165 | 166 | 167 | 168 | 169 | 170 | 171 | 172 | 173 | 174 | 175 | 176 | 177 | 178 | 179 | 180 | 181 | 182 | 183 | 185 | 186 | 187 | 188 | 189 | 1.6 190 | 191 | 196 | 197 | 198 | 199 | 200 | 201 | -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/ant.properties: -------------------------------------------------------------------------------- 1 | # This file is used to override default values used by the Ant build system. 2 | # 3 | # This file must be checked into Version Control Systems, as it is 4 | # integral to the build system of your project. 5 | 6 | # This file is only used by the Ant script. 7 | 8 | # You can use this to override default values such as 9 | # 'source.dir' for the location of your java source folder and 10 | # 'out.dir' for the location of your output folder. 11 | 12 | # You can also use it define how the release builds are signed by declaring 13 | # the following properties: 14 | # 'key.store' for the location of your keystore and 15 | # 'key.alias' for the name of the key to use. 16 | # The password will be asked during the build when you use the 'release' target. 17 | 18 | -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/build.xml: -------------------------------------------------------------------------------- 1 | 2 | 4 | 5 | 8 | 9 | 10 | 30 | 31 | 32 | 36 | 37 | 39 | 40 | 41 | 42 | 51 | 52 | 53 | 54 | 58 | 59 | 71 | 73 | 74 | 92 | 93 | 94 | 95 | 96 | -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/gen/com/harvic/myapp/BuildConfig.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | package com.harvic.myapp; 4 | 5 | /* This stub is only used by the IDE. It is NOT the BuildConfig class actually packed into the APK */ 6 | public final class BuildConfig { 7 | public final static boolean DEBUG = Boolean.parseBoolean(null); 8 | } -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/gen/com/harvic/myapp/Manifest.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | package com.harvic.myapp; 4 | 5 | /* This stub is only used by the IDE. It is NOT the Manifest class actually packed into the APK */ 6 | public final class Manifest { 7 | } -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/gen/com/harvic/myapp/R.java: -------------------------------------------------------------------------------- 1 | /*___Generated_by_IDEA___*/ 2 | 3 | package com.harvic.myapp; 4 | 5 | /* This stub is only used by the IDE. It is NOT the R class actually packed into the APK */ 6 | public final class R { 7 | } -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/local.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must *NOT* be checked into Version Control Systems, 5 | # as it contains information specific to your local configuration. 6 | 7 | # location of the SDK. This is only used by Ant 8 | # For customization when using a Version Control System, please read the 9 | # header note. 10 | sdk.dir=/Users/qijian/Library/Android/sdk 11 | -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/BlogValueAnimator1.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvic/BlogResForGitHub/7f68b674a3b389540488b78e96e463ecea23faec/《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/BlogValueAnimator1.apk -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/BlogValueAnimator1.unaligned.apk: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvic/BlogResForGitHub/7f68b674a3b389540488b78e96e463ecea23faec/《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/BlogValueAnimator1.unaligned.apk -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/BuildConfig.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvic/BlogResForGitHub/7f68b674a3b389540488b78e96e463ecea23faec/《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/BuildConfig.class -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/MyActivity$1.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvic/BlogResForGitHub/7f68b674a3b389540488b78e96e463ecea23faec/《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/MyActivity$1.class -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/MyActivity$2.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvic/BlogResForGitHub/7f68b674a3b389540488b78e96e463ecea23faec/《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/MyActivity$2.class -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/MyActivity$3.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvic/BlogResForGitHub/7f68b674a3b389540488b78e96e463ecea23faec/《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/MyActivity$3.class -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/MyActivity$4.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvic/BlogResForGitHub/7f68b674a3b389540488b78e96e463ecea23faec/《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/MyActivity$4.class -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/MyActivity.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvic/BlogResForGitHub/7f68b674a3b389540488b78e96e463ecea23faec/《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/MyActivity.class -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/R$attr.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvic/BlogResForGitHub/7f68b674a3b389540488b78e96e463ecea23faec/《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/R$attr.class -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/R$drawable.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvic/BlogResForGitHub/7f68b674a3b389540488b78e96e463ecea23faec/《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/R$drawable.class -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/R$id.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvic/BlogResForGitHub/7f68b674a3b389540488b78e96e463ecea23faec/《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/R$id.class -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/R$layout.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvic/BlogResForGitHub/7f68b674a3b389540488b78e96e463ecea23faec/《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/R$layout.class -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/R$string.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvic/BlogResForGitHub/7f68b674a3b389540488b78e96e463ecea23faec/《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/R$string.class -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/R.class: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvic/BlogResForGitHub/7f68b674a3b389540488b78e96e463ecea23faec/《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/out/production/BlogValueAnimator1/com/harvic/myapp/R.class -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/proguard-project.txt: -------------------------------------------------------------------------------- 1 | # To enable ProGuard in your project, edit project.properties 2 | # to define the proguard.config property as described in that file. 3 | # 4 | # Add project specific ProGuard rules here. 5 | # By default, the flags in this file are appended to flags specified 6 | # in ${sdk.dir}/tools/proguard/proguard-android.txt 7 | # You can edit the include path and order by changing the ProGuard 8 | # include property in project.properties. 9 | # 10 | # For more details, see 11 | # http://developer.android.com/guide/developing/tools/proguard.html 12 | 13 | # Add any project specific keep options here: 14 | 15 | # If your project uses WebView with JS, uncomment the following 16 | # and specify the fully qualified class name to the JavaScript interface 17 | # class: 18 | #-keepclassmembers class fqcn.of.javascript.interface.for.webview { 19 | # public *; 20 | #} 21 | -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/project.properties: -------------------------------------------------------------------------------- 1 | # This file is automatically generated by Android Tools. 2 | # Do not modify this file -- YOUR CHANGES WILL BE ERASED! 3 | # 4 | # This file must be checked in Version Control Systems. 5 | # 6 | # To customize properties used by the Ant build system edit 7 | # "ant.properties", and override values to adapt the script to your 8 | # project structure. 9 | # 10 | # To enable ProGuard to shrink and obfuscate your code, uncomment this (available properties: sdk.dir, user.home): 11 | #proguard.config=${sdk.dir}/tools/proguard/proguard-android.txt:proguard-project.txt 12 | 13 | # Project target. 14 | target=android-15 15 | -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/res/drawable-hdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvic/BlogResForGitHub/7f68b674a3b389540488b78e96e463ecea23faec/《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/res/drawable-hdpi/ic_launcher.png -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/res/drawable-ldpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvic/BlogResForGitHub/7f68b674a3b389540488b78e96e463ecea23faec/《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/res/drawable-ldpi/ic_launcher.png -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/res/drawable-mdpi/ic_launcher.png: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/harvic/BlogResForGitHub/7f68b674a3b389540488b78e96e463ecea23faec/《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/res/drawable-mdpi/ic_launcher.png -------------------------------------------------------------------------------- /《 Animation动画详解(四)——ValueAnimator基本使用》/BlogValueAnimator1/res/layout/main.xml: -------------------------------------------------------------------------------- 1 | 2 | 6 | 7 |