Android教程網
  1. 首頁
  2. Android 技術
  3. Android 手機
  4. Android 系統教程
  5. Android 游戲
 Android教程網 >> Android技術 >> 關於Android編程 >> Android_RecyclerView實現上下滾動廣告條實例(帶圖片)

Android_RecyclerView實現上下滾動廣告條實例(帶圖片)

編輯:關於Android編程

前言

公司新項目首頁有個類似京東/淘寶滾動廣告條,查了一下大概都是兩種實現方式,一是textview,如果只有文字的話是可行的,但我們這個上面還有個小圖片,所以pass;二是兩個viewGroup,使用動畫交替滾動,可以實現,就是顯得很麻煩,於是偷懶的我就想著用recyclerView來解決這個小問題!

思路

這個滾動廣告條高度通常是固定的,用一個固定高度的viewGroup來包裹一個recyclerView,recylerView的item布局設置一個minHeight為viewGroup的高度,這樣剛好能看到一個完整的item,然後使用recyclerView自帶的方法 smoothScrollBy()來滾動recyclerView;他需要兩個參數,x軸的滾動距離和y軸的滾動距離,我們是上下滾動,所以x軸傳入1就好啦!y軸距離傳入你的item高度,然後使用handler寫一個循環任務就可以實現一直滾動啦!

/**
   * Animate a scroll by the given amount of pixels along either axis.
   *
   * @param dx Pixels to scroll horizontally
   * @param dy Pixels to scroll vertically
   */
  public void smoothScrollBy(int dx, int dy) {
    smoothScrollBy(dx, dy, null);
  }

遇到的問題

寫好之後發現這個控件是不能夠觸摸滑動的,但是又需要點擊事件。想了想如果在onTouchEvent之類的方法中處理的話很麻煩,還不能保證完全禁止一點點都不能滑,所以就又想了個偷懶的辦法。給recyclerView上加一層透明的蒙板,徹底禁用掉recyclerView的touch事件,給蒙板設置點擊事件……下面是代碼

布局:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
       android:layout_width="match_parent"
       android:layout_height="60dp"
       android:background="@color/colorWhite"
       android:orientation="horizontal">

  <TextView
    android:layout_width="wrap_content"
    android:layout_height="match_parent"
    android:layout_marginLeft="18dp"
    android:gravity="center"
    android:text="養車\n寶典"
    android:textColor="@color/colorTitle"
    android:textSize="12sp"/>

  <View
    android:layout_width="0.5dp"
    android:layout_height="match_parent"
    android:layout_marginBottom="12dp"
    android:layout_marginLeft="10dp"
    android:layout_marginTop="12dp"
    android:background="@color/colorTitle"/>

  <!--禁用了recyclerView的觸摸事件,他的點擊事件交由一個透明的蒙版來實現-->
  <RelativeLayout
    android:layout_marginLeft="6dp"
    android:layout_width="match_parent"
    android:layout_height="match_parent">


    <com.xinshiwi.mycar.view.AutoScrollRecyclerView
      android:id="@+id/rv_home_maintain"
      android:layout_width="match_parent"
      android:layout_height="match_parent"/>

    <View
      android:id="@+id/view_home_maintain"
      android:layout_width="match_parent"
      android:layout_height="match_parent"
      android:background="@android:color/transparent"/>

  </RelativeLayout>

</LinearLayout>

Adapter:

public class MaintainInfoAdapter extends RecyclerView.Adapter<MaintainInfoAdapter.MyViewHolder> {

  List<String> list;
  public MaintainInfoAdapter(List<String> list) {
    this.list = list;
  }

  @Override
  public MyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
    View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.item_home_maintain, null);

    return new MyViewHolder(view);
  }

  @Override
  public void onBindViewHolder(MyViewHolder holder, int position) {
    holder.tv.setText(list.get(position % 4));
  }

  @Override
  public int getItemCount() {
    return Integer.MAX_VALUE;
  }

  public static class MyViewHolder extends RecyclerView.ViewHolder {

    public TextView tv;

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

  }
}

設置recyclerView:

/**
   * 滾動養車寶典
   */
  private void initMaintainData() {
    mList = new ArrayList<>();
    mList.add("如何做好隊汽車的輪胎養護0");
    mList.add("如何做好隊汽車的輪胎養護1");
    mList.add("如何做好隊汽車的輪胎養護2");
    mList.add("如何做好隊汽車的輪胎養護3");
    mRvHomeMaintain.setLayoutManager(new LinearLayoutManager(mActivity));
    mAdapter = new MaintainInfoAdapter(mList);
    mRvHomeMaintain.setAdapter(mAdapter);
    Message msg = new Message();
    msg.what = MAINTAIN_INFO;
    sHandler.sendMessageDelayed(msg, 3000);
    //通過一個透明的蒙板來設置點擊事件
    mViewHomeMaintain.setOnClickListener(new View.OnClickListener() {
      @Override
      public void onClick(View v) {
        Toast.makeText(mActivity, "pos % 4:" + (pos % 4), Toast.LENGTH_SHORT).show();
      }
    });
  }
//當前顯示的item
private int pos = 0;
private Handler sHandler = new Handler() {
    @Override
    public void handleMessage(Message msg) {
      super.handleMessage(msg);
      switch (msg.what) {
        case MAINTAIN_INFO:
          mRvHomeMaintain.smoothScrollBy(0, SizeUtils.dp2px(60));
          pos++;
          Message message = new Message();
          message.what = MAINTAIN_INFO;
          sHandler.removeMessages(MAINTAIN_INFO);
          sHandler.sendMessageDelayed(message, 3000);
          break;
      }
    }
  };

只是一個小demo,很多細節沒太考慮……有什麼問題還望大佬們指出,不勝感激,也希望大家多多支持本站。

  1. 上一頁:
  2. 下一頁:
熱門文章
閱讀排行版
Copyright © Android教程網 All Rights Reserved