在我的項目中,我有多個模塊,讓我們說模塊應用程序和模塊A充當模塊應用程序庫。我使用數據綁定,並通過在各模塊的build.gradle加入Android數據綁定<include>標籤庫模塊
dataBinding { enabled = true }
工作正常。
在模塊A的佈局中使用<include>
標記時發生問題。從DataBindingUtil調用setContentView時會崩潰。
顯示java.lang.NullPointerException:嘗試上的空對象引用
然而它正常工作在調用虛擬方法「無效com.package.name.databinding.ViewToolbarBinding.invalidateAll()」模塊應用程序,我可以通過使用類似的東西來訪問視圖。
mBindingUtil.includedLayout.viewInTheIncludedLayout
這是在模塊A我的活動佈局:
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical">
<include layout="@layout/view_toolbar"
android:id="@+id/toolbar_layout"/>
</LinearLayout>
</layout>
這是我在模塊A view_toolbar.xml:
<?xml version="1.0" encoding="utf-8"?>
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto">
<android.support.v7.widget.Toolbar
android:id="@+id/toolbar"
style="@style/ToolbarTheme"
android:layout_width="match_parent"
android:layout_height="?attr/actionBarSize"
android:background="@color/primary_blue"
android:theme="@style/AppTheme"
app:elevation="0dp" />
</layout>
雖然我這是怎麼吹大活動模塊A:
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
mBinding = DataBindingUtil.setContentView(this, R.layout.activity_with_include);
}
任何幫助表示讚賞。由於
謝謝。但是,這隻會在片段上起作用。我已經嘗試過它的活動,並沒有工作。 – luthfihariz