Android RecyclerView打造自動迴圈效果_Android

來源:互聯網
上載者:User

先看效果圖

主要處理的地方:
1、RecyclerView中Adapter的item個人可以無限輪詢.
2、RecyclerView自動滑動
3、手指按下時滑動停止,手指抬起後繼續自動滑動

public class AutoPollRecyclerView extends RecyclerView { private static final long TIME_AUTO_POLL = 16; AutoPollTask autoPollTask; private boolean running; //標示是否正在自動輪詢 private boolean canRun;//標示是否可以自動輪詢,可在不需要的是否置false public AutoPollRecyclerView(Context context, @Nullable AttributeSet attrs) {  super(context, attrs);  autoPollTask = new AutoPollTask(this); } static class AutoPollTask implements Runnable {  private final WeakReference<AutoPollRecyclerView> mReference;  //使用弱引用持有外部類引用->防止記憶體流失  public AutoPollTask(AutoPollRecyclerView reference) {   this.mReference = new WeakReference<AutoPollRecyclerView>(reference);  }  @Override  public void run() {   AutoPollRecyclerView recyclerView = mReference.get();   if (recyclerView != null && recyclerView.running &&recyclerView.canRun) {    recyclerView.scrollBy(2, 2);    recyclerView.postDelayed(recyclerView.autoPollTask,recyclerView.TIME_AUTO_POLL);   }  } } //開啟:如果正在運行,先停止->再開啟 public void start() {  if (running)   stop();  canRun = true;  running = true;  postDelayed(autoPollTask,TIME_AUTO_POLL); } public void stop(){  running = false;  removeCallbacks(autoPollTask); } @Override public boolean onTouchEvent(MotionEvent e) {  switch (e.getAction()){   case MotionEvent.ACTION_DOWN:    if (running)     stop();    break;   case MotionEvent.ACTION_UP:   case MotionEvent.ACTION_CANCEL:   case MotionEvent.ACTION_OUTSIDE:    if (canRun)     start();    break;  }  return super.onTouchEvent(e); }}

Adapter處理:主要處理getItemCount()和資料填充的onBindViewHolder()方法

public class AutoPollAdapter extends RecyclerView.Adapter<BaseViewHolder> { private final Context mContext; private final List<String> mData; public AutoPollAdapter(Context context, List<String> list) {  this.mContext = context;  this.mData = list; } @Override public BaseViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {  View view = LayoutInflater.from(mContext).inflate(R.layout.item_auto_poll, parent, false);  BaseViewHolder holder = new BaseViewHolder(view);  return holder; } @Override public void onBindViewHolder(BaseViewHolder holder, int position) {  String data = mData.get(position%mData.size());  holder.setText(R.id.tv_content,data); } @Override public int getItemCount() {  return Integer.MAX_VALUE; }}

最後附上Activity調用的代碼

public class AutoPollRecyclerActivity extends BaseActivity { @Override protected void onCreate(Bundle savedInstanceState) {  super.onCreate(savedInstanceState);  setContentView(R.layout.activity_auto_poll);  initToolBar();  initView(); } private void initView() {  AutoPollRecyclerView mRecyclerView = (AutoPollRecyclerView) findViewById(R.id.rv_recycleView);  List<String> list = new ArrayList<>();  for (int i = 0; i < 5; ) {   list.add(" Item: " + ++i);  }  AutoPollAdapter adapter = new AutoPollAdapter(this, list);  mRecyclerView.setLayoutManager(new LinearLayoutManager(this, LinearLayoutManager.HORIZONTAL, false));  mRecyclerView.addItemDecoration(new DividerItemDecoration(this, DividerItemDecoration.HORIZONTAL_LIST));  mRecyclerView.setAdapter(adapter);  if (true) //保證itemCount的總個數寬度超過螢幕寬度->自己處理   mRecyclerView.start(); }}

以上就是本文的全部內容,希望對大家的學習有所協助,也希望大家多多支援雲棲社區。

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.