500px-guideview

介绍:

500px引导动画效果,还原度较高。

运行效果:

使用说明:

注意项目不能直接导入Android Studio,需要新建项目然后自己把代码加到新建项目中。我建好了一个可以直接导入的版本: http://pan.baidu.com/s/1kTne6ph 

app模块的build.gradle要这样写:

apply plugin: 'com.android.application'
android {
    compileSdkVersion 22
    buildToolsVersion "23.0.0 rc2"
    defaultConfig {
        applicationId "hanks.com.guideview"
        minSdkVersion 15
        targetSdkVersion 22
        versionCode 1
        versionName "1.0"
        renderscriptTargetApi 18
        renderscriptSupportModeEnabled true
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}
dependencies {
    compile fileTree(dir: 'libs', include: \['*.jar'\])
    compile 'com.android.support:appcompat-v7:22.2.0'
}

其中关键是要写明

        renderscriptTargetApi 18
        renderscriptSupportModeEnabled true

并且:

buildToolsVersion "23.0.0 rc2"

而不是

buildToolsVersion "22.0.1"

这是因为模糊动画需要的renderscript 8需要这样配置,否则在运行app的时候会报错。

完整动画效果

已下载
0