我在我的android项目中使用数据绑定,我的dashboard_fragment_layout.xml包含LinearLayout,其中包含TextView和CustomView:
<layout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context="com.example.ui.dashboard.DashboardFragment">
<data>
<variable
name="ViewModel"
type="com.example.ui.dashboard.DashboardViewModel" />
</data>
<LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView
android:id="@+id/tvSome"
android:layout_width="wrap_content"
android:layout_height="wrap_content" />
<view
android:id="@+id/viewCustom"
class="com.example.ui.dashboard.CustomView"
android:layout_width="300dp"
android:layout_height="match_parent"
android:layout_gravity="bottom|center_horizontal" />
</LinearLayout>
</layout>
当我尝试通过生成的FragmentDashboardBinding访问我的自定义视图时:
mCustomView = mBinding.viewCustom;
我在AndroidStudio中遇到'无法解析符号viewCustom'。我没有TextView的这个问题,它可以从mBinding对象访问:
mSomeTextView = mBinding.tvSome; // all fine, no errors
我总是在自定义视图中收到此错误,访问自定义视图对象的唯一方法是使用findViewById以旧方式执行此操作:
mCustomView = view.findViewById(R.id.viewCustom); // that works
所有在一起:
@Override
public View onCreateView(LayoutInflater inflater, ViewGroup container,
Bundle savedInstanceState) {
super.onViewCreated(view, savedInstanceState);
mViewDataBinding = DataBindingUtil.inflate(inflater, fragment_dashboard_layout, container, false);
view = mViewDataBinding.getRoot();
mCustomView = mViewDataBinding.viewCustom; // 'Can't resolve symbol viewCustom
mTextView = mViewDataBinding.tvSome; // all fine
mCustomView = view.findViewById(R.id.viewCustom); // that works
}
如何通过生成的数据绑定对象访问自定义视图?
答案 0 :(得分:1)
在xml代码中更改为com.example.ui.dashboard.CustomView
。
并删除xml代码中的类。
试试这个。
<com.example.ui.dashboard.CustomView
android:id="@+id/viewCustom"
android:layout_width="300dp"
android:layout_height="match_parent"
android:layout_gravity="bottom|center_horizontal" />
答案 1 :(得分:0)
您使用了错误的视图标记。尝试将View
代码替换为<View
android:id="@+id/viewCustom"
class="com.example.ui.dashboard.CustomView"
android:layout_width="300dp"
android:layout_height="match_parent"
android:layout_gravity="bottom|center_horizontal" />
将您的视图代码替换为此。
{{1}}
快乐的编码!!