android – Butterknife如何从不同的Views中bindView

在我的项目中我有这个案例:

@BindView(R.id.viewpager)
ViewPager viewPager;
TabLayout tabLayout;
AddParkingFragmentListener listener;



public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) {

    View inflatedView = inflater.inflate(R.layout.fragment_add_parking, container, false);

    ButterKnife.bind(this, inflatedView);

    tabLayout = (TabLayout) getActivity().findViewById(R.id.tabs);
    tabLayout.setVisibility(View.VISIBLE);

    return inflatedView;
}

我需要绑定activity_main.xml布局中的视图.
我认为我可以使用一个接口直接在MainActivity中禁用可见性,但我也知道是否有可能使用Butterknife绑定此视图,因为在MainActivity中我也有这个问题:

 protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    View view = navigationView.getHeaderView(0);
    profile = (ImageView) view.findViewById(R.id.imgPro); 

    //this views are in the navigation view, how to bind using butterknife?
    logo = (ImageView) view.findViewById(R.id.logo);

    email = (TextView) findViewById(R.id.email_profile);

    ButterKnife.bind(this);

}

有没有办法做到这一点或我需要使用findViewById()方法?

谢谢

最佳答案 根据Butter Knife Library的官方文件

它们包含了findById方法,这些方法简化了仍然需要在View,Activity或Dialog上查找视图的代码.它使用泛型来推断返回类型并自动执行强制转换.

View view = LayoutInflater.from(context).inflate(R.layout.thing, null);
TextView firstName = ButterKnife.findById(view, R.id.first_name);
TextView lastName = ButterKnife.findById(view, R.id.last_name);
ImageView photo = ButterKnife.findById(view, R.id.photo);

为ButterKnife.findById添加一个静态导入,享受更多乐趣.

资料来源:http://jakewharton.github.io/butterknife/

点赞