我定义了一个包含 2 的布局ViewStubs
。它们定义如下:
<ViewStub
android:id="@+id/top_divider_stub"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inflatedId="@+id/top_divider_layout"
android:layout="@layout/include_line_separator_horizontal"/>
<ViewStub
android:id="@+id/bottom_divider_stub"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:inflatedId="@+id/bottom_divider_layout"
android:layout="@layout/include_line_separator_horizontal"/>
在我的适配器中,我试图ViewStub
通过 DataBinding 库生成的 ViewDataBinding 访问 ,在我的情况下它是TitleBinding
. 尝试执行以下操作会导致错误。
TitleBinding binding = DataBindingUtil.bind(view);
ViewStub topDividerStub = binding.topDividerStub;
ViewStub bottomDividerStub = binding.bottomDividerStub;
我收到此错误并且应用程序无法编译。
Error:(31, 50) error: incompatible types: ViewStubProxy cannot be converted to ViewStub
我通过将变量设置为 type 来解决它ViewStubProxy
,允许它编译但给出不兼容的类型语法突出显示错误。如果可能的话,我想知道这样做的正确方法是什么。
这有效...
ViewStubProxy topDividerStub = binding.topDividerStub;
ViewStubProxy bottomDividerStub = binding.bottomDividerStub;
导致