亚洲激情专区-91九色丨porny丨老师-久久久久久久女国产乱让韩-国产精品午夜小视频观看

溫馨提示×

溫馨提示×

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

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

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

集贤县| 辽阳县| 全椒县| 南澳县| 郴州市| 积石山| 方城县| 张家港市| 印江| 泉州市| 灵台县| 项城市| 横山县| 阜阳市| 通山县| 惠水县| 河北区| 双城市| 莒南县| 独山县| 锦屏县| 哈巴河县| 大庆市| 霞浦县| 睢宁县| 湖州市| 仙游县| 太仆寺旗| 镶黄旗| 山东| 托里县| 资兴市| 遂川县| 绥棱县| 布尔津县| 凯里市| 左云县| 大新县| 西乌珠穆沁旗| 彰化市| 大洼县|