- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我目前正在开发 Android 数据绑定(bind)应用程序。
我正在使用 android“RoboBinding”库来绑定(bind)模型- View 和 View -模型。
我使用了来自 here 的示例应用程序供引用。
这是我的 PresentationModel.java
类:
@org.robobinding.presentationmodel.PresentationModel
public class PresentationModel implements
org.robobinding.property.ObservableBean {
private String name;
public String getHello() {
return name + ": hello Android MVVM(Presentation Model)!";
}
public String getName() {
return name;
}
public void setName(String name) {
this.name = name;
}
public void sayHello() {
firePropertyChange(name);
}
@Override
public void addPropertyChangeListener(String arg0,
PropertyChangeListener arg1) {
// TODO Auto-generated method stub
}
@Override
public void removePropertyChangeListener(String arg0,
PropertyChangeListener arg1) {
// TODO Auto-generated method stub
}
}
但它显示错误为:The method firePropertyChange(String)
is undefined for the type PresentationModel PresentationModel.java
使用以下 jar 文件尝试示例:
错误截图如下:
我们将不胜感激。
谢谢。
最佳答案
关于Android RoboBinding firePropertyChange() 未定义错误,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/25502443/
让我们检查一个来自 here 的简单示例:这是一个带有 TextView 绑定(bind)的简单布局文件: ... 这是这个布局的 View 模型: @org.robobinding.
我如何将 Robobinding 的 AdapterView 与动态图像加载器(如 ion 或 picasso)一起使用? 我从 REST 服务获取位置列表,其中一个属性是我想在我的 View 中显示
我在我的项目中使用 RoboBinding。在类 ContactsActivityViewModel 的某个地方,我调用 firePropertyChange('Contacts') 并得到异常: j
我是 Android 开发新手。我用 Robobinding (MVVM framework)开发 Android 应用程序,但我没有找到任何在演示模型(不在 Activity 中)中创建验证的解决方
我目前正在开发 Android 数据绑定(bind)应用程序。 我正在使用 android“RoboBinding”库来绑定(bind)模型- View 和 View -模型。 我使用了来自 here
在Android Studio中运行Espresso工具测试时,我遇到了很多困难。 我认为这与我的 build.gradle 有关: apply plugin: 'com.android.applic
在 RoboBinding 中有注释 DependsOnStateOf。在像这样的 PresentationModel 中使用它时: @PresentationModel class Greeting
我想在 Gradle 上的 Android 项目中集成以下库: Lombok RoboBinding 与 AspectJ Dagger 为了将 RoboBinding 与 AspectJ 和 andr
使用 RoboBinding 与 Android Binding 的优缺点是什么。 例如。 RoboBinding 可以用在 fragment 上吗? 对于 fragment 的 Android 绑定
我是一名优秀的程序员,十分优秀!