当我尝试运行我的应用时出现此错误
> `Error:(30, 16) error: cannot find symbol class SetContentView`
Error:(68, 24) error: cannot find symbol class SetContentView
Error:(100, 33) error: cannot find symbol class SetContentView
Error:Execution failed for task ':app:compileDebugJavaWithJavac'.
> Compilation failed; see the compiler error output for details.
每次我尝试运行它都会出现这个错误 那是我的gradle文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 25
buildToolsVersion "25.0.3"
defaultConfig {
applicationId "com.jungleadventureninja.game"
minSdkVersion 14
targetSdkVersion 23
ndk {
moduleName "player_shared"
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.android.support:support-v4:25.2.0'
compile 'com.google.android.gms:play-services:+'
compile files('libs/dagger-1.2.2.jar')
compile files('libs/javax.inject-1.jar')
compile files('libs/nineoldandroids-2.4.0.jar')
}
`
我在android studio中的新功能..任何人都可以帮助我.. TX 注意:这个应用程序是一个eclipse应用程序..但我确实在AS中打开它,因为它更好
答案 0 :(得分:0)
为了设置视图,您需要使用Activity的setContentView()
方法而不是SetContentView
哪个编译器将其解释为不存在的类。