欧美bbbwbbbw肥妇,免费乱码人妻系列日韩,一级黄片

Android RecyclerView實(shí)現(xiàn)點(diǎn)擊條目刪除

 更新時(shí)間:2018年11月23日 11:41:16   作者:FanRQ_  
這篇文章主要為大家詳細(xì)介紹了Android RecyclerView實(shí)現(xiàn)點(diǎn)擊條目刪除,具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下

本文實(shí)例為大家分享了RecyclerView實(shí)現(xiàn)點(diǎn)擊條目刪除的具體代碼,供大家參考,具體內(nèi)容如下

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'

以上就是本文的全部?jī)?nèi)容,希望對(duì)大家的學(xué)習(xí)有所幫助,也希望大家多多支持腳本之家。

相關(guān)文章

  • Android利用Intent實(shí)現(xiàn)讀取圖片操作

    Android利用Intent實(shí)現(xiàn)讀取圖片操作

    這篇文章主要為大家詳細(xì)介紹了Android利用Intent實(shí)現(xiàn)讀取圖片操作的相關(guān)資料,感興趣的小伙伴們可以參考一下
    2016-06-06
  • Android json解析及簡(jiǎn)單例子

    Android json解析及簡(jiǎn)單例子

    這篇文章主要為大家詳細(xì)介紹了Android json解析及簡(jiǎn)單例子,具有一定的參考價(jià)值,感興趣的朋友可以參考一下
    2016-06-06
  • Android自定義照相機(jī)的實(shí)例

    Android自定義照相機(jī)的實(shí)例

    這篇文章主要介紹了Android自定義照相機(jī)的實(shí)例的相關(guān)資料,需要的朋友可以參考下
    2017-06-06
  • Android實(shí)現(xiàn)View的拖拽

    Android實(shí)現(xiàn)View的拖拽

    這篇文章主要為大家詳細(xì)介紹了Android實(shí)現(xiàn)View的拖拽,文中示例代碼介紹的非常詳細(xì),具有一定的參考價(jià)值,感興趣的小伙伴們可以參考一下
    2020-05-05
  • Android簡(jiǎn)單實(shí)用的可拖拽GridView組件分享

    Android簡(jiǎn)單實(shí)用的可拖拽GridView組件分享

    在我們?nèi)粘i_(kāi)發(fā)中,使用?GridView?這種網(wǎng)格視圖的場(chǎng)合還是不少的,本篇我們來(lái)介紹一個(gè)支持拖拽的?GridView?組件,可以輕松搞定網(wǎng)格視圖的拖拽排序,需要的可以參考一下
    2023-06-06
  • Kotlin比較與解釋Lazy與Lateinit的用法

    Kotlin比較與解釋Lazy與Lateinit的用法

    在使用kotlin開(kāi)發(fā)中,因?yàn)楦鞣N原因,我們會(huì)經(jīng)常需要使用到延遲加載的功能,目前kotlin的延遲加載主要有兩種:lateinit和lazy,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值
    2023-02-02
  • Android studio 連接手機(jī)調(diào)試操作步驟

    Android studio 連接手機(jī)調(diào)試操作步驟

    這篇文章主要介紹了Android studio 連接手機(jī)調(diào)試操作步驟,文中通過(guò)示例代碼介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或者工作具有一定的參考學(xué)習(xí)價(jià)值,需要的朋友們下面隨著小編來(lái)一起學(xué)習(xí)學(xué)習(xí)吧
    2019-05-05
  • Android Studio 3.6中新的視圖綁定工具ViewBinding 用法詳解

    Android Studio 3.6中新的視圖綁定工具ViewBinding 用法詳解

    這篇文章主要介紹了Android Studio 3.6中新的視圖綁定工具ViewBinding 用法,本文通過(guò)實(shí)例代碼給大家介紹的非常詳細(xì),對(duì)大家的學(xué)習(xí)或工作具有一定的參考借鑒價(jià)值,需要的朋友可以參考下
    2020-03-03
  • Android圖片壓縮方法并壓縮到指定大小

    Android圖片壓縮方法并壓縮到指定大小

    本文給大家分享android圖片壓縮的三種方法并壓縮到指定大小,非常不錯(cuò),具有參考借鑒價(jià)值,需要的的朋友參考下吧
    2017-07-07
  • VS Code開(kāi)發(fā)React-Native及Flutter 開(kāi)啟無(wú)線局域網(wǎng)安卓真機(jī)調(diào)試問(wèn)題

    VS Code開(kāi)發(fā)React-Native及Flutter 開(kāi)啟無(wú)線局域網(wǎng)安卓真機(jī)調(diào)試問(wèn)題

    這篇文章主要介紹了VS Code開(kāi)發(fā)React-Native,F(xiàn)lutter 開(kāi)啟無(wú)線局域網(wǎng)安卓真機(jī)調(diào)試,需要的朋友可以參考下
    2020-04-04

最新評(píng)論