gpt4 book ai didi

android - Butterknife 如何从不同的 View 绑定(bind) View

转载 作者:塔克拉玛干 更新时间:2023-11-03 01:13:07 24 4
gpt4 key购买 nike

在我的项目中我有这种情况:

@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 布局中绑定(bind)一个 View 。我想我可以使用一个接口(interface)来直接在 MainActivity 中禁用可见性,但我也想知道是否有可能使用 Butterknife 绑定(bind)此 View ,因为在 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< 上查找 View 的代码。它使用泛型来推断返回类型并自动执行转换。

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/

关于android - Butterknife 如何从不同的 View 绑定(bind) View ,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/43767240/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com