Butterknife 如何从不同的视图绑定视图

Butterknife how to bindView from a different Views

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

@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 方法,这些方法简化了仍然需要在 ViewActivityDialog 上查找视图的代码。它使用泛型来推断 return 类型并自动执行转换。

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/