gpt4 book ai didi

子模块中的 Android 数据绑定(bind)

转载 作者:太空宇宙 更新时间:2023-11-03 11:00:00 25 4
gpt4 key购买 nike

我有一个应用程序模块,比方说“测试”。 “测试”模块依赖于子模块 B。两者都启用数据绑定(bind)。在库模块 B 中,我使用数据绑定(bind)创建了一个简单的 Activity ,其目的是为了可重用性,例如:我可以创建一个基本的登录屏幕并在以后的许多应用程序中使用它。以下是包 B 中的示例代码。

package com.test.packageb

open class MainActivity : AppCompatActivity() {

lateinit var binding : ActivityMainBinding

override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
binding = DataBindingUtil.setContentView(this, R.layout.activity_main)
}
}

然后在“测试”模块中,我可以简单地继承 MainActivity 类来进行自定义操作,如下所示:

class MainActivity1 : MainActivity(){

override fun onCreate(savedInstanceState: Bundle?) {
super.onCreate(savedInstanceState)
}

fun doSomething(){
binding.rootLayout.setBackgroundResource(R.color.colorPrimary)
}
}

但是,当我尝试运行“测试”应用程序时,出现了这个错误

Error:(17, 9) Cannot access class 'com.test.packageb.databinding.ActivityMainBinding'. Check your module classpath for missing or conflicting dependencies
Error:(17, 17) Unresolved reference: rootLayout

我错过了什么?还有什么需要实现的吗?

测试应用程序 build.gradle

apply plugin: 'com.android.application'

apply plugin: 'kotlin-android'
apply plugin: 'kotlin-kapt'
apply plugin: 'kotlin-android-extensions'

android {
compileSdkVersion 26
buildToolsVersion "26.0.1"
defaultConfig {
applicationId "com.test.testapplication"
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.0"
testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"
}

dataBinding{
enabled true
}

buildTypes {
debug {

}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}
}

dependencies {
kapt 'com.android.databinding:compiler:3.0.0-beta4'
implementation fileTree(include: ['*.jar'], dir: 'libs')
implementation 'com.android.support:appcompat-v7:26.0.2'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.1', {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
implementation project(':packageb')
}

包B build.gradle

apply plugin: 'com.android.library'
apply plugin: 'kotlin-android'
apply plugin: 'kotlin-android-extensions'
apply plugin: 'kotlin-kapt'
android {
compileSdkVersion 26
buildToolsVersion "26.0.1"


defaultConfig {
minSdkVersion 15
targetSdkVersion 26
versionCode 1
versionName "1.0"

testInstrumentationRunner "android.support.test.runner.AndroidJUnitRunner"

}
dataBinding{
enabled true
}
buildTypes {
debug {
minifyEnabled false
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
}
}

}

dependencies {
kapt 'com.android.databinding:compiler:3.0.0-beta4'
implementation fileTree(dir: 'libs', include: ['*.jar'])
implementation 'com.android.support:appcompat-v7:26.0.2'
implementation 'com.android.support.constraint:constraint-layout:1.0.2'
testImplementation 'junit:junit:4.12'
androidTestImplementation('com.android.support.test.espresso:espresso-core:3.0.1', {
exclude group: 'com.android.support', module: 'support-annotations'
})
implementation "org.jetbrains.kotlin:kotlin-stdlib-jre7:$kotlin_version"
}

最佳答案

不确定这个问题是否与您相关,但我设法找到了某种解决方案。

要让它工作,基类应该有泛型

class A<BINDING extends ViewDataBinding> {
protected ABinding binding;

void init(){
binding = (ABinding) DataBindingUtil.setContentView(this, R.layout.a);
}
}

并将相同的绑定(bind)从子模块传递给子类

class B<ABinding> {
// you can use instance in this class
}

这里的主要问题是您无法彻底更改 UI,只能隐藏现有元素或在运行时添加新元素。但我想在这种情况下更容易创建一个全新的类。

关于子模块中的 Android 数据绑定(bind),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/46101167/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com