查看绑定未生成
View Bindings not generating
我目前正在试用新的 ViewBindings,但我没有让它们工作。我在 Android Studio 3.6.1
。我刚刚创建了一个新项目并将 viewBinding.enabled = true
添加到我的模块 build.gradle
。但是当我尝试访问 MainActivityBinding
class 时,它说它无法解析符号。自动完成没有找到任何类似于绑定 class 的内容。我也尝试过使用 Kotlin 的不同项目,但没有成功。 AS4.0
也无济于事。我需要做什么才能生成 ViewBinding
classes?
我的build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion "29.0.3"
viewBinding {
enabled = true
}
defaultConfig {
applicationId "com.example.myapplication"
minSdkVersion 29
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
确保您已完成的几件事:
- 确保你有一个格式正确的布局文件,顶部的布局标签声明了你的变量
- 尝试 gradle 同步
我没有检查过,但我知道目前我的一些团队成员一直在报告绑定 类 自从升级到 3.6 后在 Android studio 中不再被解析,但是项目仍然构建良好,所以它们确实存在,可能是 Android studio 的错误?
我找不到我的 ViewBinding
文件,直到我突然意识到绑定是以 XML
文件(“fragment_home.xml”)而不是 class ("HomeFragment.kt")。所以我在 HomeFragmentBinding
找不到它们,但我在 FragmentHomeBinding.
找到了它们
我发现将每个 ViewBinding 视为已创建为该 XML 文件委托的辅助单例很有帮助。
(编辑删除了过时的 Gradle 内容)
我刚刚更改了布局的名称,效果很好
布局的根标签必须是 <layout>
。确保不是你的情况。
必须更改我的原始布局 XML 文件
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:id="@+id/welcome_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:text="Hello World!" />
</androidx.constraintlayout.widget.ConstraintLayout>
至
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".MainActivity"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/welcome_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:text="Hello World!" />
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>
在我的例子中,我试图绑定视图
已添加 build.gradle(模块)
buildFeatures{
dataBinding true
viewBinding true
}
上一个是
viewBinding{
enabled = true
}
如果您手动输入fragment/layout名称,请检查布局名称关键字的拼写,如“fragment”,错误会生成同名的绑定文件
我目前正在试用新的 ViewBindings,但我没有让它们工作。我在 Android Studio 3.6.1
。我刚刚创建了一个新项目并将 viewBinding.enabled = true
添加到我的模块 build.gradle
。但是当我尝试访问 MainActivityBinding
class 时,它说它无法解析符号。自动完成没有找到任何类似于绑定 class 的内容。我也尝试过使用 Kotlin 的不同项目,但没有成功。 AS4.0
也无济于事。我需要做什么才能生成 ViewBinding
classes?
我的build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 29
buildToolsVersion "29.0.3"
viewBinding {
enabled = true
}
defaultConfig {
applicationId "com.example.myapplication"
minSdkVersion 29
targetSdkVersion 29
versionCode 1
versionName "1.0"
testInstrumentationRunner "androidx.test.runner.AndroidJUnitRunner"
}
buildTypes {
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
}
dependencies {
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'androidx.appcompat:appcompat:1.1.0'
implementation 'androidx.constraintlayout:constraintlayout:1.1.3'
testImplementation 'junit:junit:4.12'
androidTestImplementation 'androidx.test.ext:junit:1.1.1'
androidTestImplementation 'androidx.test.espresso:espresso-core:3.2.0'
}
确保您已完成的几件事:
- 确保你有一个格式正确的布局文件,顶部的布局标签声明了你的变量
- 尝试 gradle 同步
我没有检查过,但我知道目前我的一些团队成员一直在报告绑定 类 自从升级到 3.6 后在 Android studio 中不再被解析,但是项目仍然构建良好,所以它们确实存在,可能是 Android studio 的错误?
我找不到我的 ViewBinding
文件,直到我突然意识到绑定是以 XML
文件(“fragment_home.xml”)而不是 class ("HomeFragment.kt")。所以我在 HomeFragmentBinding
找不到它们,但我在 FragmentHomeBinding.
我发现将每个 ViewBinding 视为已创建为该 XML 文件委托的辅助单例很有帮助。
(编辑删除了过时的 Gradle 内容)
我刚刚更改了布局的名称,效果很好
布局的根标签必须是 <layout>
。确保不是你的情况。
必须更改我的原始布局 XML 文件
<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".MainActivity">
<TextView
android:id="@+id/welcome_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:text="Hello World!" />
</androidx.constraintlayout.widget.ConstraintLayout>
至
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android">
<androidx.constraintlayout.widget.ConstraintLayout
xmlns:app="http://schemas.android.com/apk/res-auto"
xmlns:tools="http://schemas.android.com/tools"
tools:context=".MainActivity"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/welcome_text"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintTop_toTopOf="parent"
android:text="Hello World!" />
</androidx.constraintlayout.widget.ConstraintLayout>
</layout>
在我的例子中,我试图绑定视图
已添加 build.gradle(模块)
buildFeatures{
dataBinding true
viewBinding true
}
上一个是
viewBinding{
enabled = true
}
如果您手动输入fragment/layout名称,请检查布局名称关键字的拼写,如“fragment”,错误会生成同名的绑定文件