手機直播原始碼,實現圖片瀑布流式滑動效果

zhibo系統開發發表於2022-02-28

手機直播原始碼,實現圖片瀑布流式滑動效果實現的相關程式碼

1.具體實現如下:

 
// 1.設定LayoutManager
StaggeredGridLayoutManager manager = new StaggeredGridLayoutManager(2, StaggeredGridLayoutManager.VERTICAL);
manager.setGapStrategy(StaggeredGridLayoutManager.GAP_HANDLING_NONE);
recyclerView.setLayoutManager(manager);
 
// 2.新增ItemDecoration
// 每個item之間的間距
int divider = DimenUtil.Dp2Px(8);
RecyclerView.ItemDecoration gridItemDecoration = new RecyclerView.ItemDecoration() {
        @Override
        public void getItemOffsets(@NonNull Rect outRect, @NonNull View view, RecyclerView parent, @NonNull RecyclerView.State state) {
            StaggeredGridLayoutManager.LayoutParams layoutParams = (StaggeredGridLayoutManager.LayoutParams) view.getLayoutParams();
                int spanIndex = layoutParams.getSpanIndex();
                int position = parent.getChildAdapterPosition(view);
                outRect.bottom = divider;
                if (position == 0 || position == 1) {
                    outRect.top = divider * 2;
                } else {
                    outRect.top = 0;
                }
                if (spanIndex % 2 == 0) {//偶數項
                    outRect.left = divider;
                    outRect.right = divider / 2;
                } else {
                    outRect.left = divider / 2;
                    outRect.right = divider;
                }
        }
    };
recyclerView.addItemDecoration(gridItemDecoration);
 
// 3.設定RecyclerView的介面卡Adapter,就是一個ImageView,就不詳細補充adapter了。
// 此處主要寫一下Glide載入圓角圖片:
int radius = 10;// 圓角半徑
RequestOptions options = new RequestOptions()
                .placeholder(defRes)
                .transform(new CenterCrop(), new GlideRoundTransform(radius))
                .diskCacheStrategy(DiskCacheStrategy.RESOURCE);
Glide.with(context)
                .load(imgResource)
                .transition(DrawableTransitionOptions.withCrossFade())
                .apply(options)
                .into(imageView);


2.最後注意:瀑布流中的圖片高度不一,不是固定的,圖片是按照原始寬高比顯示,所以圖片的width和height最好由伺服器介面返回即可(至於圖片寬高的值:1.可通過最初的上傳介面,告知伺服器;2.也可上傳到伺服器以後,由伺服器計算獲取其寬高存入資料庫);app拿到寬高設定到imageView即可。

以上就是 手機直播原始碼,實現圖片瀑布流式滑動效果實現的相關程式碼,更多內容歡迎關注之後的文章


來自 “ ITPUB部落格 ” ,連結:http://blog.itpub.net/69978258/viewspace-2860034/,如需轉載,請註明出處,否則將追究法律責任。

相關文章