欧美一级特黄大片做受成人-亚洲成人一区二区电影-激情熟女一区二区三区-日韩专区欧美专区国产专区

RecyclerView中怎么實(shí)現(xiàn)水平列表

這篇文章將為大家詳細(xì)講解有關(guān)RecyclerView中怎么實(shí)現(xiàn)水平列表,文章內(nèi)容質(zhì)量較高,因此小編分享給大家做個(gè)參考,希望大家閱讀完這篇文章后對(duì)相關(guān)知識(shí)有一定的了解。

創(chuàng)新互聯(lián)是一家集網(wǎng)站建設(shè),魚峰企業(yè)網(wǎng)站建設(shè),魚峰品牌網(wǎng)站建設(shè),網(wǎng)站定制,魚峰網(wǎng)站建設(shè)報(bào)價(jià),網(wǎng)絡(luò)營(yíng)銷,網(wǎng)絡(luò)優(yōu)化,魚峰網(wǎng)站推廣為一體的創(chuàng)新建站企業(yè),幫助傳統(tǒng)企業(yè)提升企業(yè)形象加強(qiáng)企業(yè)競(jìng)爭(zhēng)力。可充分滿足這一群體相比中小企業(yè)更為豐富、高端、多元的互聯(lián)網(wǎng)需求。同時(shí)我們時(shí)刻保持專業(yè)、時(shí)尚、前沿,時(shí)刻以成就客戶成長(zhǎng)自我,堅(jiān)持不斷學(xué)習(xí)、思考、沉淀、凈化自己,讓我們?yōu)楦嗟钠髽I(yè)打造出實(shí)用型網(wǎng)站。

2、activity_horizontallistview.xml

<?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="match_parent" android:orientation="vertical">  <android.support.v7.widget.RecyclerView  android:id="@+id/recyclerview_horizontal1"  android:layout_width="wrap_content"  android:layout_height="wrap_content"  android:layout_gravity="center_horizontal"  android:overScrollMode="never"  android:scrollbars="none"  />  <android.support.v7.widget.RecyclerView  android:id="@+id/recyclerview_horizontal2"  android:layout_width="wrap_content"  android:layout_height="wrap_content"  android:layout_gravity="center_horizontal"  android:overScrollMode="never"  android:scrollbars="none"  />  <android.support.v7.widget.RecyclerView  android:id="@+id/recyclerview_horizontal3"  android:layout_width="wrap_content"  android:layout_height="wrap_content"  android:layout_gravity="center_horizontal"  android:overScrollMode="never"  android:scrollbars="none"  /></LinearLayout>

3、activity代碼

package ivan.com.appbackendtest; import android.content.Context;import android.os.Bundle;import android.support.v7.app.AppCompatActivity;import android.support.v7.widget.LinearLayoutManager;import android.support.v7.widget.RecyclerView;import android.view.LayoutInflater;import android.view.View;import android.view.ViewGroup;import android.widget.ImageView;import android.widget.TextView; import java.util.ArrayList;import java.util.Arrays;import java.util.List; /** * Created by ivan on 2017/6/9. */ public class HorizontalListviewActivity extends AppCompatActivity { private RecyclerView recyclerview_horizontal1; private GalleryAdapter mAdapter1; private RecyclerView recyclerview_horizontal2; private GalleryAdapter mAdapter2; private RecyclerView recyclerview_horizontal3; private GalleryAdapter mAdapter3; private List<Integer> mDatas1; private List<Integer> mDatas2; private List<Integer> mDatas3; @Override protected void onCreate(Bundle savedInstanceState) {  super.onCreate(savedInstanceState);  setContentView(R.layout.activity_horizontallistview);  initDatas();  //得到控件  recyclerview_horizontal1 = (RecyclerView)findViewById(R.id.recyclerview_horizontal1);  //設(shè)置布局管理器  LinearLayoutManager linearLayoutManager = new LinearLayoutManager(this);  linearLayoutManager.setOrientation(LinearLayoutManager.HORIZONTAL);  recyclerview_horizontal1.setLayoutManager(linearLayoutManager);  //設(shè)置適配器  mAdapter1 = new GalleryAdapter(this, mDatas1);  recyclerview_horizontal1.setAdapter(mAdapter1);   //得到控件  recyclerview_horizontal2 = (RecyclerView)findViewById(R.id.recyclerview_horizontal2);  //設(shè)置布局管理器  LinearLayoutManager linearLayoutManager2 = new LinearLayoutManager(this);  linearLayoutManager2.setOrientation(LinearLayoutManager.HORIZONTAL);  recyclerview_horizontal2.setLayoutManager(linearLayoutManager2);  //設(shè)置適配器  mAdapter2 = new GalleryAdapter(this, mDatas2);  recyclerview_horizontal2.setAdapter(mAdapter2);   //得到控件  recyclerview_horizontal3 = (RecyclerView)findViewById(R.id.recyclerview_horizontal3);  //設(shè)置布局管理器  LinearLayoutManager linearLayoutManager3 = new LinearLayoutManager(this);  linearLayoutManager3.setOrientation(LinearLayoutManager.HORIZONTAL);  recyclerview_horizontal3.setLayoutManager(linearLayoutManager3);  //設(shè)置適配器  mAdapter3 = new GalleryAdapter(this, mDatas3);  recyclerview_horizontal3.setAdapter(mAdapter3); } private void initDatas() {  mDatas1 = new ArrayList<>(Arrays.asList(R.mipmap.ic_launcher));  mDatas2 = new ArrayList<>(Arrays.asList(R.mipmap.ic_launcher,R.mipmap.ic_launcher));  mDatas3 = new ArrayList<>(Arrays.asList(R.mipmap.ic_launcher,R.mipmap.ic_launcher,R.mipmap.ic_launcher,R.mipmap.ic_launcher,R.mipmap.ic_launcher,R.mipmap.ic_launcher)); } public class GalleryAdapter extends   RecyclerView.Adapter<GalleryAdapter.ViewHolder> {  private LayoutInflater mInflater;  private List<Integer> mDatas;   public GalleryAdapter(Context context, List<Integer> datats)  {   mInflater = LayoutInflater.from(context);   mDatas = datats;  }   public class ViewHolder extends RecyclerView.ViewHolder  {   public ViewHolder(View arg0)   {    super(arg0);   }    ImageView mImg;   TextView mTxt;  }   @Override  public int getItemCount()  {   return mDatas.size();  }   /**   * 創(chuàng)建ViewHolder   */  @Override  public ViewHolder onCreateViewHolder(ViewGroup viewGroup, int i)  {   View view = mInflater.inflate(R.layout.item_listview,     viewGroup, false);   ViewHolder viewHolder = new ViewHolder(view);    viewHolder.mImg = (ImageView) view     .findViewById(R.id.id_index_gallery_item_image);   return viewHolder;  }  /**   * 設(shè)置值   */  @Override  public void onBindViewHolder(final ViewHolder viewHolder, final int i)  {   viewHolder.mImg.setImageResource(mDatas.get(i));  } }}

4、核心代碼

//得到控件  recyclerview_horizontal1 = (RecyclerView)findViewById(R.id.recyclerview_horizontal1);  //設(shè)置布局管理器  LinearLayoutManager linearLayoutManager = new LinearLayoutManager(this);  linearLayoutManager.setOrientation(LinearLayoutManager.HORIZONTAL);  recyclerview_horizontal1.setLayoutManager(linearLayoutManager);  //設(shè)置適配器  mAdapter1 = new GalleryAdapter(this, mDatas1);  recyclerview_horizontal1.setAdapter(mAdapter1);

關(guān)于RecyclerView中怎么實(shí)現(xiàn)水平列表就分享到這里了,希望以上內(nèi)容可以對(duì)大家有一定的幫助,可以學(xué)到更多知識(shí)。如果覺得文章不錯(cuò),可以把它分享出去讓更多的人看到。

網(wǎng)站名稱:RecyclerView中怎么實(shí)現(xiàn)水平列表
網(wǎng)頁網(wǎng)址:http://aaarwkj.com/article26/igjsjg.html

成都網(wǎng)站建設(shè)公司_創(chuàng)新互聯(lián),為您提供微信公眾號(hào)網(wǎng)站設(shè)計(jì)公司、定制開發(fā)、做網(wǎng)站、品牌網(wǎng)站設(shè)計(jì)、App開發(fā)

廣告

聲明:本網(wǎng)站發(fā)布的內(nèi)容(圖片、視頻和文字)以用戶投稿、用戶轉(zhuǎn)載內(nèi)容為主,如果涉及侵權(quán)請(qǐng)盡快告知,我們將會(huì)在第一時(shí)間刪除。文章觀點(diǎn)不代表本網(wǎng)站立場(chǎng),如需處理請(qǐng)聯(lián)系客服。電話:028-86922220;郵箱:631063699@qq.com。內(nèi)容未經(jīng)允許不得轉(zhuǎn)載,或轉(zhuǎn)載時(shí)需注明來源: 創(chuàng)新互聯(lián)

外貿(mào)網(wǎng)站制作
欧美日韩一级性生活片| 人妻少妇被猛烈进入文字幕| 成人18禁h黄在线看免费| 中文字幕av二区三区人妻| 亚洲精品有码中文字幕| 国产亚洲高清一区二区| 青青草视频在线针对华人| 一区二区三区在线观看日韩| 国产传媒网约在线观看| 另类视频在线免费观看| 日韩精品在线观看一| 日本视频免费一区二区| 放荡成熟人妻中文字幕| 亚洲欧美日韩国产一区二区三区| 粉嫩美女精品一区二区| 日日添夜夜添天天操| 国产一级成人免费视频| 亚洲欧美半夜激情一区二区| 亚洲中文有码在线播放| 国产精品人一区二区三区| 欧美精品成人免费在线| 少妇高潮时会抱紧男人脖子| 国产亚洲欧美日韩中文字幕| 日本高清有码中文字幕| 日本 一区二区在线| 欧美激情性国产精品潮| 国产91精品激烈高潮白浆| 国产亚洲综合一区二区三区| 美国一级二级三级黄片| 精品久久久噜噜噜久久| 欧美性生活真实的视频| 中文字幕在线五月婷婷| 中文字幕国产精品欧美| 亚洲综合一区二区三区四区在线 | 刚出嫁新婚少妇很紧很爽| 久久伊人亚洲精品中文字幕| 一区二区在线视频免费播放| 日韩国产欧美亚州精品| 日韩精品人妻一区二区网站| 色婷婷av一区二区三区张| 亚洲一区乱码精品中文|