其他分享
首页 > 其他分享> > 如何在ButterKnife中绑定XML片段?

如何在ButterKnife中绑定XML片段?

作者:互联网

xml中的片段

<fragment
    android:id="@+id/parent_fragment"
    android:name="com.app.example.ParentFragment"
    android:layout_width="match_parent"
    android:layout_height="wrap_content" />

结合活动

@BindView(R.id.parent_fragment)
ParentFragment parentFragment;

gradle构建错误消息

@BindView fields must extend from View or be an interface

是否有类似@BindFragment的东西,用于使用@ id绑定XML片段?

如果这很明显,我很抱歉.

解决方法:

显然,该库中没有此类注释.

http://jakewharton.github.io/butterknife/

由于您的活动中不会有很多片段,因此可能不需要使用库.只需使用FragmentManager的经典方法

parentFragment = (ParentFragment) getSupportFragmentManager().findFragmentById(R.id.parent_fragment);

标签:butterknife,android-fragments,xml,android
来源: https://codeday.me/bug/20191110/2015279.html