gpt4 book ai didi

android - 将 BindView 与 Butterknife 一起使用的反面是什么?

转载 作者:太空狗 更新时间:2023-10-29 15:58:36 24 4
gpt4 key购买 nike

我试图在不使用 Butterknife 方法的情况下编写以下代码,主要用于学习目的。任何人都可以在没有使用的情况下帮助编写它吗?

我猜这是

TextView textName = findViewById(R.id.post_title); 

但它似乎运行不一样,所以我猜我遗漏了什么

public class FriendsHolder extends RecyclerView.ViewHolder {
@BindView(R.id.name)
TextView textName;
@BindView(R.id.image)
CircleImageView imageView;
@BindView(R.id.title)
TextView textTitle;
@BindView(R.id.company)
TextView textCompany;

public FriendsHolder(View itemView) {
super(itemView);
ButterKnife.bind(this, itemView);
}
}

最佳答案

当编译SDK版本大于或等于26时,您可以这样做:

public class FriendsHolder extends RecyclerView.ViewHolder {
TextView textName;
CircleImageView imageView;
TextView textTitle;
TextView textCompany;

public FriendsHolder(View itemView) {
super(itemView);
textName = itemView.findViewById(R.id.name);
imageView = itemView.findViewById(R.id.image);
textTitle = itemView.findViewById(R.id.title);
textCompany = itemView.findViewById(R.id.company);
}
}

对于低于 26 的 API 版本,您只需将 findViewById 方法返回的 View 显式类型转换为字段类型。

关于android - 将 BindView 与 Butterknife 一起使用的反面是什么?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/50108857/

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