我正在使用具有以下布局的DataBinding。我正在绑定对象上调用setViewModel()方法。如果我立即调用binding.getViewModel(),它将返回null。请参阅以下代码:
布局:
<layout>
<data>
<variable
name="viewModel"
type="reyes.r.christopher.spenderbender.viewmodel.TransactionViewModel"/>
</data>
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical" android:layout_width="match_parent"
android:layout_height="match_parent">
<TableLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:id="@+id/viewExpenseListTable"
android:shrinkColumns="*"
android:stretchColumns="*"
>
</TableLayout>
</ScrollView>
</layout>
的活动:
public class ViewExpenseListActivity extends AppCompatActivity {
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
ActivityViewExpenseListBinding binding = DataBindingUtil.setContentView(this, R.layout.activity_view_expense_list);
LocalDatabaseHandler dbh = new LocalDatabaseHandler(this);
TransactionViewModel viewModel = new TransactionViewModel(dbh);
binding.setViewModel(viewModel);
if ( BuildConfig.DEBUG ) {
if (viewModel == null) {
throw new AssertionError("Somehow viewModel is null...");
}
if(binding.getViewModel() == null) {
// This Assertion is always thrown
throw new AssertionError("viewModel is not null, but wasn't set in the binding");
}
}
// Throws NullPointerException
binding.getViewModel().loadAllExpenses();
}
...
}
您可能会注意到我没有在布局中的任何位置使用变量。每当新行添加到数据库时,我都试图以编程方式用数据库中的值替换表中的行。这就是我需要从绑定中获取viewModel的原因。
PS:我发现了类似的问题:Android Databinding Adapter Null Pointer Exception。当他们调用 set 方法而不是 get 方法时,此人获得了Null指针异常。我可以很好地调用 set 方法,但 get 会返回一个null对象。
答案 0 :(得分:6)
事实证明,如果布局中没有引用变量,那么生成的setter和getter就不会实现。
我决定发布这个以防万一其他人在将来有类似的问题,但我在调查生成的文件时发现了这一点。以下是生成的ActivityViewExpenseListBinding类中getViewModel()和setViewModel()方法的样子:
public void setViewModel(reyes.r.christopher.spenderbender.viewmodel.TransactionViewModel viewModel) {
// not used, ignore
}
public reyes.r.christopher.spenderbender.viewmodel.TransactionViewModel getViewModel() {
return null;
}
我需要从布局中引用viewModel变量,或者使用不同的模式来观察更改。