nex*_*n24 5 java data-binding android view android-layout
我在数据绑定Android教程中陷入困境。我发现将数据绑定到视图时遇到问题。
public class DataView extends FrameLayout {
private DataViewBinding binding;
public DataView (Context context, AttributeSet attrs) {
super(context,attrs);
}
@Override
protected void onFinishInflate()
{
super.onFinishInflate();
binding = DataViewBinding.bind(this); <---
}
@Override
protected void onAttachedToWindow()
{
super.onAttachedToWindow();
DataSource dataSource = DataSource.get("Data View");
binding.setDataSource(dataSource); <---
} }
Run Code Online (Sandbox Code Playgroud)
data_view.xml
<layout>
<data>
<variable
name="dataSource"
type="com.example.kaz.simplebindingdemo.DataSource" />
</data>
<com.example.kaz.simplebindingdemo.DataView
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="16dp"
tools:showIn="@layout/content_main"
tools:context=".DataView">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@{dataSource.message}" />
</com.example.kaz.simplebindingdemo.DataView>
</layout>
Run Code Online (Sandbox Code Playgroud)
在渲染中,我遇到了异常:
java.lang.RuntimeException: view tag isn't correct on view:null at
com.example.kaz.simplebindingdemo.databinding.DataViewBinding.bind(DataViewBinding.java:123)
at
com.example.kaz.simplebindingdemo.databinding.DataViewBinding.bind(DataViewBinding.java:119)
at
com.example.kaz.simplebindingdemo.DataView.onFinishInflate(DataView.java:22)
at
android.view.LayoutInflater.rInflate_Original(LayoutInflater.java:844)
at
android.view.LayoutInflater_Delegate.rInflate(LayoutInflater_Delegate.java:70)
at android.view.LayoutInflater.rInflate(LayoutInflater.java:811) at
android.view.LayoutInflater.rInflateChildren(LayoutInflater.java:798)
at android.view.LayoutInflater.inflate(LayoutInflater.java:515) at
android.view.LayoutInflater.inflate(LayoutInflater.java:394)
Run Code Online (Sandbox Code Playgroud)
删除绑定声明解决了该问题,但是我没有自定义视图。:) 任何
小智 0
像这样改变
<layout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools">
<data>
<variable
name="dataSource"
type="com.example.kaz.simplebindingdemo.DataSource" />
</data>
<com.example.kaz.simplebindingdemo.DataView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingTop="16dp"
tools:showIn="@layout/content_main"
tools:context=".DataView">
<TextView
android:layout_width="match_parent"
android:layout_height="match_parent"
android:text="@{dataSource.message}" />
</com.example.kaz.simplebindingdemo.DataView>
</layout>
Run Code Online (Sandbox Code Playgroud)
| 归档时间: |
|
| 查看次数: |
997 次 |
| 最近记录: |