溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊(cè)×
其他方式登錄
點(diǎn)擊 登錄注冊(cè) 即表示同意《億速云用戶服務(wù)條款》

怎么在Android中使用RecyclerView實(shí)現(xiàn)一個(gè)點(diǎn)擊條目刪除功能

發(fā)布時(shí)間:2021-04-20 18:04:35 來(lái)源:億速云 閱讀:296 作者:Leah 欄目:移動(dòng)開發(fā)

怎么在Android中使用RecyclerView實(shí)現(xiàn)一個(gè)點(diǎn)擊條目刪除功能?很多新手對(duì)此不是很清楚,為了幫助大家解決這個(gè)難題,下面小編將為大家詳細(xì)講解,有這方面需求的人可以來(lái)學(xué)習(xí)下,希望你能有所收獲。

Android是什么

Android是一種基于Linux內(nèi)核的自由及開放源代碼的操作系統(tǒng),主要使用于移動(dòng)設(shè)備,如智能手機(jī)和平板電腦,由美國(guó)Google公司和開放手機(jī)聯(lián)盟領(lǐng)導(dǎo)及開發(fā)。

MainActivity.java

public class MainActivity extends AppCompatActivity implements View.OnClickListener{

  private Button mButton1;
  private Button mButton2;
  private Button mButton3;
  private Button mButton4;
  private Button mButton5;
  private RecyclerView mRecyclerView;
  private ArrayList<String> mList;
  private LinearLayoutManager mLinearLayoutManager;
  private RvAdapter mAdapter;


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

    findViews();

    mList = new ArrayList<>();
    for (int i=0;i<20;i++){
      mList.add(i+"item");
    }

    mAdapter = new RvAdapter(mList, this);
    mRecyclerView.setAdapter(mAdapter);

    //設(shè)置分割線
    mRecyclerView.addItemDecoration(new DividerItemDecoration(this,DividerItemDecoration.VERTICAL));
    //設(shè)置默認(rèn)布局
    mLinearLayoutManager = new LinearLayoutManager(this, LinearLayoutManager.VERTICAL, false);
    mRecyclerView.setLayoutManager(mLinearLayoutManager);

    mAdapter.setOnItemClickListener(new RvAdapter.OnItemClickListener() {
      @Override
      public void onItemClick(int position) {
        mAdapter.remove(position);
      }

      @Override
      public void onItemLongClick(int position) {

        mAdapter.remove(position);
      }
    });

  }

  private void findViews() {

    mRecyclerView = findViewById(R.id.rv);

    mButton1= findViewById(R.id.b1);
    mButton2= findViewById(R.id.b2);
    mButton3= findViewById(R.id.b3);
    mButton4= findViewById(R.id.b4);
    mButton5= findViewById(R.id.b5);

    mButton1.setOnClickListener(this);
    mButton2.setOnClickListener(this);
    mButton3.setOnClickListener(this);
    mButton4.setOnClickListener(this);
    mButton5.setOnClickListener(this);


  }

  @Override
  public void onClick(View view) {
    switch (view.getId()){
      case R.id.b1:

        mAdapter.addData(3);
        mRecyclerView.scrollToPosition(0);
        break;
      case R.id.b2:

        mAdapter.remove(mList.size()-1);
        break;
      case R.id.b3:

        mLinearLayoutManager = new LinearLayoutManager(this, LinearLayoutManager.VERTICAL, false);
        mRecyclerView.setLayoutManager(mLinearLayoutManager);
        break;
      case R.id.b4:

        mRecyclerView.setLayoutManager(new GridLayoutManager(this, 3));
        //mRecyclerView.addItemDecoration(new android.support.v7.widget.DividerItemDecoration(this, DividerItemDecoration.HORIZONTAL));

        break;
      case R.id.b5:

        mRecyclerView.setLayoutManager(new StaggeredGridLayoutManager(2,StaggeredGridLayoutManager.VERTICAL));
        break;
    }
  }
}

activity_main.xml

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
  xmlns:app="http://schemas.android.com/apk/res-auto"
  xmlns:tools="http://schemas.android.com/tools"
  android:layout_width="match_parent"
  android:layout_height="match_parent"
  tools:context=".MainActivity">

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

    <LinearLayout
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:orientation="horizontal">
      <Button
        android:id="@+id/b1"
        android:layout_width="wrap_content"
        android:layout_weight="1"
        android:layout_height="wrap_content"
        android:text="添加"/>
      <Button
        android:id="@+id/b2"
        android:layout_width="wrap_content"
        android:layout_weight="1"
        android:layout_height="wrap_content"
        android:text="刪除"/>
      <Button
        android:id="@+id/b3"
        android:layout_width="wrap_content"
        android:layout_weight="1"
        android:layout_height="wrap_content"
        android:text="List"/>
      <Button
        android:id="@+id/b4"
        android:layout_width="wrap_content"
        android:layout_weight="1"
        android:layout_height="wrap_content"
        android:text="Grid"/>
      <Button
        android:id="@+id/b5"
        android:layout_width="wrap_content"
        android:layout_weight="1"
        android:layout_height="wrap_content"
        android:text="flow"/>
    </LinearLayout>
    <android.support.v7.widget.RecyclerView
      android:id="@+id/rv"
      android:layout_width="match_parent"
      android:layout_height="match_parent"/>
  </LinearLayout>

</android.support.constraint.ConstraintLayout>

RvAdapter.java

public class RvAdapter extends RecyclerView.Adapter<RvAdapter.ViewHolder>{

  private List<String> lists;
  private Context mContext;

  public RvAdapter(List<String> lists, Context context) {
    this.lists = lists;
    mContext = context;
  }

  @Override
  public ViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
    View view = View.inflate(mContext, R.layout.item, null);
    ViewHolder holder = new ViewHolder(view);
    return holder;
  }

  public void addData(int position) {
    lists.add(position,"ff");
    notifyItemInserted(position);
  }

  public void remove(int i) {
    lists.remove(i);
    notifyItemRemoved(i);
    notifyDataSetChanged();

  }

  public interface OnItemClickListener{  //自定義接口回調(diào)設(shè)置點(diǎn)擊事件
    void onItemClick(int position);
    void onItemLongClick(int position);
  }

  private OnItemClickListener mOnItemClickListener;

  public void setOnItemClickListener(OnItemClickListener onItemClickListener){
    mOnItemClickListener=onItemClickListener;
  }

  @Override
  public void onBindViewHolder(final ViewHolder holder, final int position) {
    holder.mTextView.setText(lists.get(position));

       holder.itemView.setOnClickListener(new View.OnClickListener() {
         @Override
         public void onClick(View view) {

           int ps = holder.getLayoutPosition();
           mOnItemClickListener.onItemClick(ps);
         }
       });

       holder.itemView.setOnLongClickListener(new View.OnLongClickListener() {
         @Override
         public boolean onLongClick(View view) {

           int ps=holder.getLayoutPosition();
           mOnItemClickListener.onItemLongClick(ps);
           return false;
         }
       });

  }


  @Override
  public int getItemCount() {
    return lists.size();
  }

  public static class ViewHolder extends RecyclerView.ViewHolder{
    public final TextView mTextView;

    public ViewHolder(View itemView) {
      super(itemView);
      mTextView = (TextView) itemView.findViewById(R.id.tv);
    }
  }
}

build.gradle

implementation 'com.android.support:recyclerview-v7:27.1.1'

看完上述內(nèi)容是否對(duì)您有幫助呢?如果還想對(duì)相關(guān)知識(shí)有進(jìn)一步的了解或閱讀更多相關(guān)文章,請(qǐng)關(guān)注億速云行業(yè)資訊頻道,感謝您對(duì)億速云的支持。

向AI問(wèn)一下細(xì)節(jié)

免責(zé)聲明:本站發(fā)布的內(nèi)容(圖片、視頻和文字)以原創(chuàng)、轉(zhuǎn)載和分享為主,文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如果涉及侵權(quán)請(qǐng)聯(lián)系站長(zhǎng)郵箱:is@yisu.com進(jìn)行舉報(bào),并提供相關(guān)證據(jù),一經(jīng)查實(shí),將立刻刪除涉嫌侵權(quán)內(nèi)容。

AI