リストのように見えるシンプルなRecyclerViewがあり、それぞれのビューに異なるIDを設定しています。最初のビューをクリックしてビューを追加し、クリックしてください(最初のものを期待してください)。正しく動作しないのは、ビューを削除して別のビューを追加すると、新しいビューのIDがその注文を破棄することです。Android:リサイクルビューを削除して正しく追加する
アダプタ
public class AddEventsAdapter extends RecyclerView.Adapter<AddEventsAdapter.ViewHolder> {
private List<String> items = new ArrayList<>();
public void addItem(String name) {
items.add(name);
notifyItemInserted(items.size() - 1);
}
public void removeItem(int position) {
items.remove(position);
notifyItemRemoved(position);
}
@Override
public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
LayoutInflater inflater = LayoutInflater.from(parent.getContext());
View view = inflater.inflate(R.layout.add_event_item, parent, false);
return new ViewHolder(view);
}
@Override
public void onBindViewHolder(ViewHolder holder, int position) {
}
@Override
public int getItemCount() {
return items.size();
}
static int i;
class ViewHolder extends RecyclerView.ViewHolder{
public TextView eventName;
public RelativeLayout theLayout;
public ViewHolder(View itemView) {
super(itemView);
eventName = (TextView)itemView.findViewById(R.id.eventName);
theLayout = (RelativeLayout)itemView.findViewById(R.id.backgroundevent);
theLayout.setId(++i);
eventName.setText(String.format("", i));
theLayout.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
if (v.getId() == 1){
addItem("");
}else {
removeItem(getAdapterPosition());
}
}
});
}
}
}
実装:
final AddEventsAdapter AddContainer = new AddEventsAdapter();
AddEventsRecycler.setLayoutManager(new LinearLayoutManager(this));
AddEventsRecycler.setAdapter(AddContainer);
AddEventsRecycler.setItemViewCacheSize(666);
AddContainer.addItem("");
すべての行のレイアウト:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:background="@drawable/event_clicked_ripple"
android:clickable="true"
android:id="@+id/backgroundevent"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:padding="10dp">
<TextView
android:clickable="false"
android:id="@+id/eventName"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="something"
android:layout_centerVertical="true"
android:layout_toLeftOf="@+id/eventImage"
android:layout_toStartOf="@+id/eventImage"
android:layout_marginRight="10dp"/>
<ImageButton
android:clickable="false"
android:id="@+id/eventImage"
android:layout_alignParentEnd="true"
android:layout_alignParentRight="true"
android:layout_width="30dp"
android:layout_height="30dp"
android:background="@drawable/oval_shape"/>
</RelativeLayout>
私の問題は、5つのビューを追加して2番目を削除し、もう1つ追加すると6番目のisnteadをもう一度追加します。 ここでの質問は、ビューを削除してリサイクルしない方法ですと思いますか?
?あなたのビュー所有者は自分自身を設定してはいけません。 –
私はonBindViewHolderを使って各項目のテキストを設定するか、削除した後にビューをリサイクルしないようにする必要があると言っていますか? –
'eventName.setText(String.format(" "、i));'作成時にビューホルダーにテキストを設定するだけです。これは明らかに再び呼び出されることはなく、問題につながります。あなたのオブジェクトを 'onBindViewHolder'で適切にバインドし、idが必要な場合は、そのIDをビューホルダーではなくモデルに追加してください。 –