只需使用Android Studio 2.2.3和Java 1.8和Android 7(API Level 24)設置項目,試圖測試「新」java 8功能Stream
。如何在Android 6.0下使用Java 8 Stream API
這裏我gradle這個文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.2"
defaultConfig {
applicationId "com.example.radinator.myproject"
minSdkVersion 24
targetSdkVersion 24
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.2.0'
testCompile 'junit:junit:4.12'
}
下面的代碼:
import java.util.stream.*;
public class MainActivity extens Activity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_mainactivity);
}
void foo(){
List<String> myList = Arrays.asList("one", "two", "three", "four", "five", "six");
myList.stream()
.filter(s -> s.length() > 0)
.collect(Collectors.toList())
}
}
Android Studio中強調了線myList.stream()...
告訴我 「Usage of API documented as @since 1.8+
」 搖籃正在編制的一切,但爲什麼我得到這個消息?我認爲這個特性是在Java 8中引入的,並且可以在Android API Level 24和更高版本中獲得?
我該如何解決這個爛攤子?
在此先感謝
也許這可能有助於(設置模塊lang級別):http://stackoverflow.com/questions/37787079/intellij-unable-to-use-newer-java-8-classes-error-usage-of-api - 如果安卓工作室有這個選項我已經改變它的文檔 – Kelo
。可悲的是沒有這樣的選擇(只編譯sdk版本和構建工具版本) – Radinator
API等級24 =牛軋糖,Android 7.0-7。1.1,API Level 23 = Marshmallow,Android 6.0(.1) – Sartorius