中文字幕av专区_日韩电影在线播放_精品国产精品久久一区免费式_av在线免费观看网站

溫馨提示×

溫馨提示×

您好,登錄后才能下訂單哦!

密碼登錄×
登錄注冊×
其他方式登錄
點擊 登錄注冊 即表示同意《億速云用戶服務條款》

RecyclerView列表項頭部懸浮固定實現

發布時間:2024-08-15 13:47:31 來源:億速云 閱讀:99 作者:小樊 欄目:移動開發

要實現RecyclerView列表項頭部懸浮固定,可以使用RecyclerView的ItemDecoration來實現。下面是一個實現的示例代碼:

public class StickyHeaderItemDecoration extends RecyclerView.ItemDecoration {
    private static final int HEADER_VIEW_TYPE = 1;

    private LayoutInflater mLayoutInflater;
    private Context mContext;
    private int mHeaderLayoutId;
    private int mHeaderTextViewId;
    private SparseArray<View> mHeaderViews;

    public StickyHeaderItemDecoration(Context context, int headerLayoutId, int headerTextViewId) {
        mLayoutInflater = LayoutInflater.from(context);
        mContext = context;
        mHeaderLayoutId = headerLayoutId;
        mHeaderTextViewId = headerTextViewId;
        mHeaderViews = new SparseArray<>();
    }

    @Override
    public void onDrawOver(Canvas c, RecyclerView parent, RecyclerView.State state) {
        super.onDrawOver(c, parent, state);

        int childCount = parent.getChildCount();
        if (childCount == 0) {
            return;
        }

        for (int i = 0; i < childCount; i++) {
            View child = parent.getChildAt(i);
            int position = parent.getChildAdapterPosition(child);

            if (isHeader(position)) {
                View headerView = getHeaderView(parent, position);
                drawHeader(parent, c, headerView);
            }
        }
    }

    private View getHeaderView(RecyclerView parent, int position) {
        int headerPosition = getHeaderPositionForItem(position);
        int layoutResId = getHeaderLayout(headerPosition);
        View headerView = mHeaderViews.get(headerPosition);

        if (headerView == null) {
            headerView = mLayoutInflater.inflate(layoutResId, parent, false);
            mHeaderViews.put(headerPosition, headerView);
        }

        bindHeaderView(headerView, headerPosition);
        return headerView;
    }

    private void bindHeaderView(View headerView, int position) {
        TextView textView = headerView.findViewById(mHeaderTextViewId);
        textView.setText("Header " + position);
    }

    private boolean isHeader(int position) {
        return position == 0 || position == 5 || position == 10; // 指定哪些位置為頭部
    }

    private int getHeaderPositionForItem(int position) {
        return position - position / 6;
    }

    private int getHeaderLayout(int headerPosition) {
        return mHeaderLayoutId;
    }

    private void drawHeader(RecyclerView parent, Canvas c, View headerView) {
        c.save();
        c.translate(0, parent.getPaddingTop());
        headerView.draw(c);
        c.restore();
    }
}

在Activity或Fragment中使用StickyHeaderItemDecoration:

StickyHeaderItemDecoration itemDecoration = new StickyHeaderItemDecoration(this, R.layout.layout_header, R.id.tv_header);
recyclerView.addItemDecoration(itemDecoration);

上面的代碼中,StickyHeaderItemDecoration類實現了RecyclerView的ItemDecoration接口,并在onDrawOver方法中繪制頭部懸浮固定的視圖。在getHeaderView方法中獲取頭部視圖并綁定數據,根據isHeader方法判斷當前位置是否為頭部,然后在onDrawOver方法中繪制頭部視圖。

在Activity或Fragment中,創建StickyHeaderItemDecoration對象并添加到RecyclerView的ItemDecoration中即可實現RecyclerView列表項頭部懸浮固定的效果。

向AI問一下細節

免責聲明:本站發布的內容(圖片、視頻和文字)以原創、轉載和分享為主,文章觀點不代表本網站立場,如果涉及侵權請聯系站長郵箱:is@yisu.com進行舉報,并提供相關證據,一經查實,將立刻刪除涉嫌侵權內容。

AI

望谟县| 白山市| 政和县| 新和县| 邻水| 双鸭山市| 呼和浩特市| 洞口县| 唐山市| 新建县| 德钦县| 卓资县| 禹州市| 米脂县| 新晃| 北辰区| 襄汾县| 肥城市| 玉树县| 天津市| 繁峙县| 鄯善县| 海原县| 巴塘县| 仪陇县| 西峡县| 凌源市| 河北省| 弥渡县| 松滋市| 东光县| 林芝县| 瑞昌市| 昌黎县| 惠东县| 海门市| 报价| 临颍县| 南华县| 大田县| 澜沧|