(注意:这是Is it possible to use androidx-navigation with onClick-databinding without writing boilercode in Fragment?的后续问题
我想使用androidx-databinding处理onClick
调用带有参数的静态方法Utils.myNavigate(...)
通过xml-layout-file
下面的我的代码已通过编译过程验证
但当我单击按钮时从未调用。
如何解决这个问题?
我的布局文件:
<layout ...>
<data>
<import type="de.k3b.androidx.navigationdemo.R" />
<import type="de.k3b.androidx.navigationdemo.Utils" />
</data>
<RelativeLayout ...>
<Button ...
android:onClick="@{view -> Utils.myNavigate(view,
R.id.action_gallery_to_editProperties)}"
/>
</RelativeLayout>
</layout>
我的静态方法实现:
public class Utils {
public static final String TAG = "Utils";
public static void myNavigate(View view, @IdRes int id) {
// this gets never called neither with `Object view` nor with `View view`
Log.d (TAG, "myNavigate clicked");
// Navigation.findNavController(view).navigate(id);
}
}
全局项目build.gradle
buildscript {
repositories {
google()
jcenter()
}
dependencies {
classpath 'com.android.tools.build:gradle:3.4.0'
classpath "android.arch.navigation:navigation-safe-args-gradle-plugin:1.0.0"
}
}
allprojects {
repositories {
google()
jcenter()
}
}
应用程序build.gradle
apply plugin: 'com.android.application'
android {
compileSdkVersion 28
defaultConfig {
applicationId "de.k3b.androidx.navigationdemo"
minSdkVersion 15
targetSdkVersion 28
versionCode 1
versionName "1.0"
}
buildTypes {
debug {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
release {
minifyEnabled false
proguardFiles getDefaultProguardFile('proguard-android-optimize.txt'), 'proguard-rules.pro'
}
}
dataBinding.enabled=true
}
dependencies {
implementation 'androidx.appcompat:appcompat:1.0.0'
implementation 'androidx.legacy:legacy-support-v4:1.0.0'
implementation 'android.arch.navigation:navigation-fragment:1.0.0'
implementation 'android.arch.navigation:navigation-ui:1.0.0'
}
最佳答案
您可能忘记了将布局与活动绑定。
更改
setContentView(R.layout.your_layout_file);
至
DataBindingUtil.setContentView(this, R.layout.your_layout_file);
如果这不是问题,则可以检查使用数据绑定在调用静态方法时创建的working sample。
关于android - 如何将带有onClick的androidx数据绑定(bind)到带参数的静态方法,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/56074061/