我想使用setExpandedTitleGravity()中的CollapsingToolbarLayout方法。我刚从eclipse迁移到android studio。在eclipse中它运行良好,但在android studio编译器中给出了错误cannot resolve method setExpandedTitleGravity(int)
。
显然我现在正在使用另一个版本的设计库,但它似乎是最后一个版本。
我的依赖是:compile 'com.android.support:design:22.2.0'
。谁知道为什么会这样?
完成build.gradle
文件:
apply plugin: 'com.android.application'
android {
compileSdkVersion 22
buildToolsVersion "23.0.0 rc3"
defaultConfig {
applicationId "com.example.myapp"
minSdkVersion 15
targetSdkVersion 22
compileOptions {
sourceCompatibility JavaVersion.VERSION_1_7
targetCompatibility JavaVersion.VERSION_1_7
}
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.txt'
}
}
}
dependencies {
compile 'com.android.support:design:22.2.0'
}
答案 0 :(得分:1)
您收到cannot resolve method setExpandedTitleGravity(int)
,因为在设计支持库v23.0.0中添加了setExpandedTitleGravity (int gravity)
您需要更新build.gradle
:
dependencies {
compile 'com.android.support:design:23.0.1'
}
要使用支持库v23,您还需要将compileSdkVersion
更改为23
答案 1 :(得分:1)
无法解析方法setExpandedTitleGravity(int)
build.gradle 应该用于 buildToolsVersion" 23.0.0 rc3"
yourGrid.Height = ((NumebrOfRows+1) * HeightOfRow)
dependencies {
compile 'com.android.support:design:23.0.1'
}
您的信息Note :
(版本buildToolsVersion "23.0.0 rc3"
)不稳定。可能是Beta版本(避免使用Beta-Canary版本获得完美结果)。如果您使用rc3
或其高版本等稳定版本,将会更好。