Inflateするレイアウトを間違えていたので修正

This commit is contained in:
r-ca 2024-01-29 00:32:54 +09:00
parent 4770977e66
commit 04e0c9c05a
No known key found for this signature in database
GPG Key ID: 6A72911AC73464A9

View File

@ -44,7 +44,7 @@ public class LacertaApplyTagAdapter extends RecyclerView.Adapter<LacertaApplyTag
@NonNull
@Override
public LacertaApplyTagAdapter.LacertaApplyTagViewHolder onCreateViewHolder(@NonNull ViewGroup parent, int viewType) {
View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.lacerta_dialog_apply_tag, parent, false);
View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.apply_tag_list_item, parent, false);
return new LacertaApplyTagAdapter.LacertaApplyTagViewHolder(view);
}