Android Studio中使用Lambda表达式

1.在project的gradle中引入插件

在project的gradle的dependencies引入retrolambda插件。在dependencies 中添加classpath'me.tatarka:gradle-retrolambda:3.2.5'。如图:
Android Studio中使用Lambda表达式_第1张图片

buildscript {
    repositories {
        jcenter()
    }
    dependencies {
        classpath 'com.android.tools.build:gradle:2.2.3'
        classpath'me.tatarka:gradle-retrolambda:3.2.5'
        // NOTE: Do not place your application dependencies here; they belong
        // in the individual module build.gradle files
    }
}

allprojects {
    repositories {
        jcenter()
    }
}

task clean(type: Delete) {
    delete rootProject.buildDir
}

2.在Module的gradle中填写依赖。

分两步:
1.设置JDK1.8
2.应用retrolambda插件
如图:
Android Studio中使用Lambda表达式_第2张图片

apply plugin: 'com.android.application'

android {
    compileSdkVersion 25
    buildToolsVersion "25.0.2"
    //设置JDK1.8
    compileOptions {
        sourceCompatibility JavaVersion.VERSION_1_8
        targetCompatibility JavaVersion.VERSION_1_8
    }
    defaultConfig {
        applicationId "com.book.wuzt.bookapp"
        minSdkVersion 15
        targetSdkVersion 25
        versionCode 1
        versionName "1.0"
        testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
    }
    buildTypes {
        release {
            minifyEnabled false
            proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
        }
    }
}

dependencies {
    compile fileTree(dir: 'libs', include: ['*.jar'])
    androidTestCompile('com.android.support.test.espresso:espresso-core:2.2.2', {
        exclude group: 'com.android.support', module: 'support-annotations'
    })
    compile 'com.android.support:appcompat-v7:25.0.1'
    testCompile 'junit:junit:4.12'
    //应用retrolambda插件
    apply plugin:'me.tatarka.retrolambda'
}

3.最后不要忘了 Sync Now

你可能感兴趣的:(android-studio,Lambda插件)