Android:向网格添加视图RecyclerView

时间:2016-04-10 13:17:15

标签: java android android-recyclerview

我已经使用GridLayoutManager创建了一个RecyclerView,我希望每次单击一个按钮时都会向网格添加一个自定义视图,每个视图都必须有一个不同的ID,当单击该视图时它会被销毁。

正在发生的事情是,如果我添加5个视图,然后单击第3个视图来销毁它,下次添加视图时,它会再次添加第3个视图,而不是新的第6个视图。

自定义视图布局(grid_item_button.xml)

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:background="#864643">

<Button
    android:id="@+id/grid_button"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content" />

<EditText
    android:id="@+id/editName"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:ems="2"
    android:textColor="#ffffff"/>

<TextView
    android:id="@+id/ClassName"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="center_horizontal"
    android:text="hmm"
    android:textColor="#ffffff"/>

MyAdapter.java

class MyAdapter extends RecyclerView.Adapter<MyAdapter.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.grid_item_button, 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 implements View.OnClickListener {

        private Button button;
        private TextView ClassName;

        public ViewHolder(View itemView) {
            super(itemView);
            ClassName = (TextView) itemView.findViewById(R.id.ClassName);
            button = (Button) itemView.findViewById(R.id.grid_button);
            button.setOnClickListener(this);
            ClassName.setId(++i);
        }

        @Override
        public void onClick(View v) {
            removeItem(getAdapterPosition());
        }
    }

}

activity_main.xml中

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context="m.testingsubjects.MainActivity">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:orientation="vertical">

        <Button
            android:id="@+id/button_add_item"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />

        <android.support.v7.widget.RecyclerView
            android:layout_marginTop="50dp"
            android:id="@+id/recycler_view"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"/>

    </LinearLayout>

</ScrollView>

MainActivity.java

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);


    RecyclerView recyclerView = (RecyclerView) findViewById(R.id.recycler_view);
    assert recyclerView != null;
    recyclerView.setLayoutManager(new GridLayoutManager(this, NUMBER_COLUMNS));
    recyclerView.addItemDecoration(new SampleItemDecoration());
    final MyAdapter adapter = new MyAdapter();
    recyclerView.setAdapter(adapter);
    recyclerView.setNestedScrollingEnabled(false);

    adapter.addItem("");

    findViewById(R.id.button_add_item).setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            adapter.addItem("");
        }
    });


}

所以我需要的是在点击视图时销毁视图,而不是暂时删除视图,因为它似乎正在发生。

1 个答案:

答案 0 :(得分:1)

您错过了onBindViewHolder实施。这很重要,因为Android使用它来更新重用的视图内容。查看onBindViewHolder documentation

究竟发生了什么是android将你的第6个内容添加到第3个视图(因为它被破坏,系统想要重用这个资源),但是它不知道如何刷新内容以便它与前一个一起显示。

Android仅使用多个视图来显示适配器中的所有数据。如果RecycleView需要新ViewHolder,则会调用onCreateViewHolder,否则会使用onBindViewHolder,您必须指定如何更新重用ViewHolder的内容