使用RecyclerView實現(xiàn)瀑布流

效果如下:

jdfw.gif
  • 項目目錄結(jié)構(gòu)
11111.png
  • 在build.gradle文件中加入recyclerview和cardview的依賴
  compile 'com.android.support:recyclerview-v7:26.0.0-alpha1'
  compile 'com.android.support:cardview-v7:26.0.0-alpha1'
  • 對應Java Bean
public class Beauty {
    /**
     * 名字
     */
    private String name;
    /**
     * 圖片id
     */
    private int imageId;

    public Beauty(String name, int imageId) {
        this.name = name;
        this.imageId = imageId;
    }

    public String getName() {
        return name;
    }

    public int getImageId() {
        return imageId;
    }
}
  • RecyclerView Item布局
<?xml version="1.0" encoding="utf-8"?>
<android.support.v7.widget.CardView xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:layout_margin="5dp"
    android:padding="4dp"
    app:cardBackgroundColor="#ffffffff"
    app:cardCornerRadius="15dp">

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

        <ImageView
            android:id="@+id/image_item"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:scaleType="centerCrop" />

        <TextView
            android:id="@+id/name_item"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content" />
    </LinearLayout>
</android.support.v7.widget.CardView>
  • BeautyAdapter 繼承自RecyclerView.Adapter<>
public class BeautyAdapter extends RecyclerView.Adapter<BeautyAdapter.BeautyViewHolder> {
    /**
     * 上下文
     */
    private Context mContext;
    /**
     * 數(shù)據(jù)集合
     */
    private List<Beauty> data;

    public BeautyAdapter(List<Beauty> data, Context context) {
        this.data = data;
        this.mContext = context;
    }

    @Override
    public BeautyViewHolder onCreateViewHolder(ViewGroup parent, int viewType) {
        //加載item 布局文件
        View view = LayoutInflater.from(parent.getContext()).inflate(R.layout.beauty_item, parent, false);
        return new BeautyViewHolder(view);
    }

    @Override
    public void onBindViewHolder(BeautyViewHolder holder, int position) {
        //將數(shù)據(jù)設置到item上
        Beauty beauty = data.get(position);
        holder.beautyImage.setImageResource(beauty.getImageId());
        holder.nameTv.setText(beauty.getName());
    }

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

    static class BeautyViewHolder extends RecyclerView.ViewHolder {
        ImageView beautyImage;
        TextView nameTv;

        public BeautyViewHolder(View itemView) {
            super(itemView);
            beautyImage = itemView.findViewById(R.id.image_item);
            nameTv = itemView.findViewById(R.id.name_item);
        }
    }
}
  • MainActivity 布局文件(只有一個RecyclerView)
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#88ffffff"
    tools:context="com.example.recyclerviewdemo.MainActivity">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recycler_view"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />
</RelativeLayout>
  • MainActivity代碼
public class MainActivity extends AppCompatActivity {

    private RecyclerView recyclerView;
    private List<Beauty> data = new ArrayList<>();

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);
        recyclerView = (RecyclerView) findViewById(R.id.recycler_view);
        //使用瀑布流布局,第一個參數(shù) spanCount 列數(shù),第二個參數(shù) orentation 排列方向
        StaggeredGridLayoutManager recyclerViewLayoutManager = 
                new StaggeredGridLayoutManager(2, StaggeredGridLayoutManager.VERTICAL);
        //線性布局Manager
//        LinearLayoutManager recyclerViewLayoutManager = new LinearLayoutManager(this);
//        recyclerViewLayoutManager.setOrientation(LinearLayoutManager.VERTICAL);
        //網(wǎng)絡布局Manager
//        GridLayoutManager recyclerViewLayoutManager = new GridLayoutManager(this, 3);
        //給recyclerView設置LayoutManager
        recyclerView.setLayoutManager(recyclerViewLayoutManager);
        initData();
        BeautyAdapter adapter = new BeautyAdapter(data, this);
        //設置adapter
        recyclerView.setAdapter(adapter);
    }

    /**
     * 生成一些數(shù)據(jù)添加到集合中
     */
    private void initData() {
        Beauty beauty;
        for (int i = 0; i < 10; i++) {
            beauty = new Beauty("美女" + i, R.mipmap.mm1);
            data.add(beauty);
            beauty = new Beauty("美女" + i, R.mipmap.mm2);
            data.add(beauty);
            beauty = new Beauty("美女" + i, R.mipmap.mm3);
            data.add(beauty);
            beauty = new Beauty("美女" + i, R.mipmap.mm4);
            data.add(beauty);
            beauty = new Beauty("美女" + i, R.mipmap.mm5);
            data.add(beauty);
            beauty = new Beauty("美女" + i, R.mipmap.mm6);
            data.add(beauty);
            beauty = new Beauty("美女" + i, R.mipmap.mm7);
            data.add(beauty);
            beauty = new Beauty("美女" + i, R.mipmap.mm8);
            data.add(beauty);
            beauty = new Beauty("美女" + i, R.mipmap.mm9);
            data.add(beauty);
            beauty = new Beauty("美女" + i, R.mipmap.mm10);
            data.add(beauty);
        }
    }
}
最后編輯于
?著作權(quán)歸作者所有,轉(zhuǎn)載或內(nèi)容合作請聯(lián)系作者
  • 序言:七十年代末遗契,一起剝皮案震驚了整個濱河市祠汇,隨后出現(xiàn)的幾起案子芬首,更是在濱河造成了極大的恐慌瓢捉,老刑警劉巖,帶你破解...
    沈念sama閱讀 206,378評論 6 481
  • 序言:濱河連續(xù)發(fā)生了三起死亡事件蓝仲,死亡現(xiàn)場離奇詭異俱病,居然都是意外死亡,警方通過查閱死者的電腦和手機袱结,發(fā)現(xiàn)死者居然都...
    沈念sama閱讀 88,356評論 2 382
  • 文/潘曉璐 我一進店門亮隙,熙熙樓的掌柜王于貴愁眉苦臉地迎上來,“玉大人垢夹,你說我怎么就攤上這事溢吻。” “怎么了果元?”我有些...
    開封第一講書人閱讀 152,702評論 0 342
  • 文/不壞的土叔 我叫張陵促王,是天一觀的道長。 經(jīng)常有香客問我而晒,道長蝇狼,這世上最難降的妖魔是什么? 我笑而不...
    開封第一講書人閱讀 55,259評論 1 279
  • 正文 為了忘掉前任倡怎,我火速辦了婚禮迅耘,結(jié)果婚禮上,老公的妹妹穿的比我還像新娘监署。我一直安慰自己颤专,他們只是感情好,可當我...
    茶點故事閱讀 64,263評論 5 371
  • 文/花漫 我一把揭開白布钠乏。 她就那樣靜靜地躺著血公,像睡著了一般。 火紅的嫁衣襯著肌膚如雪缓熟。 梳的紋絲不亂的頭發(fā)上累魔,一...
    開封第一講書人閱讀 49,036評論 1 285
  • 那天,我揣著相機與錄音够滑,去河邊找鬼垦写。 笑死,一個胖子當著我的面吹牛彰触,可吹牛的內(nèi)容都是我干的梯投。 我是一名探鬼主播,決...
    沈念sama閱讀 38,349評論 3 400
  • 文/蒼蘭香墨 我猛地睜開眼况毅,長吁一口氣:“原來是場噩夢啊……” “哼分蓖!你這毒婦竟也來了?” 一聲冷哼從身側(cè)響起尔许,我...
    開封第一講書人閱讀 36,979評論 0 259
  • 序言:老撾萬榮一對情侶失蹤么鹤,失蹤者是張志新(化名)和其女友劉穎,沒想到半個月后味廊,有當?shù)厝嗽跇淞掷锇l(fā)現(xiàn)了一具尸體蒸甜,經(jīng)...
    沈念sama閱讀 43,469評論 1 300
  • 正文 獨居荒郊野嶺守林人離奇死亡,尸身上長有42處帶血的膿包…… 初始之章·張勛 以下內(nèi)容為張勛視角 年9月15日...
    茶點故事閱讀 35,938評論 2 323
  • 正文 我和宋清朗相戀三年余佛,在試婚紗的時候發(fā)現(xiàn)自己被綠了柠新。 大學時的朋友給我發(fā)了我未婚夫和他白月光在一起吃飯的照片。...
    茶點故事閱讀 38,059評論 1 333
  • 序言:一個原本活蹦亂跳的男人離奇死亡辉巡,死狀恐怖恨憎,靈堂內(nèi)的尸體忽然破棺而出,到底是詐尸還是另有隱情郊楣,我是刑警寧澤憔恳,帶...
    沈念sama閱讀 33,703評論 4 323
  • 正文 年R本政府宣布,位于F島的核電站痢甘,受9級特大地震影響喇嘱,放射性物質(zhì)發(fā)生泄漏。R本人自食惡果不足惜塞栅,卻給世界環(huán)境...
    茶點故事閱讀 39,257評論 3 307
  • 文/蒙蒙 一者铜、第九天 我趴在偏房一處隱蔽的房頂上張望。 院中可真熱鬧放椰,春花似錦作烟、人聲如沸。這莊子的主人今日做“春日...
    開封第一講書人閱讀 30,262評論 0 19
  • 文/蒼蘭香墨 我抬頭看了看天上的太陽。三九已至如蚜,卻和暖如春压恒,著一層夾襖步出監(jiān)牢的瞬間影暴,已是汗流浹背。 一陣腳步聲響...
    開封第一講書人閱讀 31,485評論 1 262
  • 我被黑心中介騙來泰國打工探赫, 沒想到剛下飛機就差點兒被人妖公主榨干…… 1. 我叫王不留型宙,地道東北人。 一個月前我還...
    沈念sama閱讀 45,501評論 2 354
  • 正文 我出身青樓伦吠,卻偏偏與公主長得像妆兑,于是被迫代替她去往敵國和親。 傳聞我的和親對象是個殘疾皇子毛仪,可洞房花燭夜當晚...
    茶點故事閱讀 42,792評論 2 345

推薦閱讀更多精彩內(nèi)容