是否可以为expandableListView应用展开或折叠动画?
我正在尝试在android studio上编译我的代码而且我在这一点上陷入困境.我没有任何东西可以使用ndk编译,但每次编译失败并出现此错误.
当我检查workspace.xml时,它包含了针对compileDebugNdk和compileReleaseNdk的ExternalTaskPojo.
我不需要它们,但无法找到一种方法来删除它们,因为它是一个自动生成的文件.
请建议.
编辑 - > build.gradle文件
apply plugin: 'android-library'
android {
compileSdkVersion 19
buildToolsVersion "19.0.3"
defaultConfig {
minSdkVersion 9
targetSdkVersion 9
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile project(':a')
compile project(':b')
compile project(':c')
compile project(':d')
compile project(':e')
compile 'com.android.support:support-v4:19.1.0'
}
Run Code Online (Sandbox Code Playgroud)
另一个build.gradle文件
apply plugin: 'android'
android {
compileSdkVersion 19
buildToolsVersion "19.0.3"
defaultConfig {
minSdkVersion 9
targetSdkVersion 9
}
buildTypes {
release {
runProguard false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard- rules.txt'
} …Run Code Online (Sandbox Code Playgroud)