我正在尝试使用FirestoreRecyclerAdapter,并且正在加载数据,并且可以在调试器中看到它。但是,当我尝试将TextView设置为与某些数据相等时,由于TextView为null,它会崩溃。
在调试时,它的确会首先尝试使用findViewById设置TextView,但是失败,并且将其设置为null。
我已经看到了使用onFinishInflate的建议,但是不确定在这种情况下我可以在哪里覆盖该功能。
public class PostAdapter extends FirestoreRecyclerAdapter<Post, PostAdapter.PostHolder> {
public PostAdapter(@NonNull FirestoreRecyclerOptions<Post> options) {
super(options);
}
@NonNull
@Override
public PostHolder onCreateViewHolder(@NonNull ViewGroup viewGroup, int i) {
View v = LayoutInflater.from(viewGroup.getContext()).inflate(R.layout.post_layout,
viewGroup, false);
return new PostHolder(v);
}
class PostHolder extends RecyclerView.ViewHolder {
TextView tvTitle;
TextView tvPitch;
public PostHolder(@NonNull View itemView) {
super(itemView);
tvTitle = itemView.findViewById(R.id.etTitle);
tvPitch = itemView.findViewById(R.id.etPitch);
}
}
@Override
protected void onBindViewHolder(@NonNull PostHolder holder, int position, @NonNull Post model) {
holder.tvTitle.setText(model.title);
holder.tvPitch.setText(model.pitch);
}
}
_________________________________________________
<?xml version="1.0" encoding="utf-8"?>
<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto">
<TextView
android:id="@+id/tvTitle"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"/>
<TextView
android:id="@+id/tvPitch"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintTop_toTopOf="parent"/>
</android.support.constraint.ConstraintLayout>
答案 0 :(得分:3)
使用此etPitch = itemView.findViewById(R.id.tvPitch);
代码。
答案 1 :(得分:3)
您使用了对TextView的错误引用,即
etTitle
当您的XML显示tvTitle时 而且,第二个textview指的是错误的ID。所以你的代码应该是这样的
tvTitle = itemView.findViewById(R.id.tvTitle);
tvPitch = itemView.findViewById(R.id.tvPitch);