Android效果,SideBar 和RecyclerView联动的悬浮效果

转载请注明原创出处,谢谢!
类似效果图
  • 类似效果图 ↑
  • 类似效果图 ↑
  • 类似效果图 ↑
  • 重要的画说三遍
public class MyActivity extends BaseActivity implements SideBar.OnSelectListener {
    @Bind(R.id.tv_suspension_bar)
    TextView tvSuspensionBar; // 悬浮
    @Bind(R.id.recycler)
    RecyclerView recycler;
    @Bind(R.id.side_bar)
    SideBar sideBar;
    private int mSuspensionHeight = 0; // 高度
    private int mCurrentPosition = 0; // 当前悬浮
    private LinearLayoutManager layoutManager;
    private MyAdapter adapter = new MyAdapter();

    @Override
    public int getLayoutRes() {
        return R.layout.activity_my;
    }

    @Override
    public void afterLoadLayout(Bundle savedInstanceState) {
        layoutManager = new LinearLayoutManager(context);
        recycler.setLayoutManager(layoutManager);
        recycler.setAdapter(adapter);
        sideBar.setOnSelectListener(this);
        adapter.setOnItemChildClickListener(this);
        recycler.addOnScrollListener(new RecyclerView.OnScrollListener() {
            @Override
            public void onScrollStateChanged(@NonNull RecyclerView recyclerView, int newState) {
                super.onScrollStateChanged(recyclerView, newState);
                mSuspensionHeight = tvSuspensionBar.getHeight();
            }

            @Override
            public void onScrolled(@NonNull RecyclerView recyclerView, int dx, int dy) {
                super.onScrolled(recyclerView, dx, dy);
                if (mCurrentPosition > 0) {
                    if (adapter.getData().get(mCurrentPosition + 1).isShowFirm()) {
                        View view = layoutManager.findViewByPosition(mCurrentPosition + 1);
                        if (view != null) {
                            if (view.getTop() <= mSuspensionHeight) {
                                tvSuspensionBar.setY(-(mSuspensionHeight - view.getTop()));
                            } else {
                                tvSuspensionBar.setY(0);
                            }
                        }
                    }
                }
                if (mCurrentPosition != layoutManager.findFirstVisibleItemPosition()) {
                    mCurrentPosition = layoutManager.findFirstVisibleItemPosition();
                    tvSuspensionBar.setY(0);
                    tvSuspensionBar.setText(adapter.getData().get(mCurrentPosition).getFirstEng());
                }
            }
        });
        getData();
    }

    @Override
    public void onSelect(String s) {
        sideBar.setOnSelectListener(new SideBar.OnSelectListener() {
            @Override
            public void onSelect(String s) {
                // 根据选中的首字母移动到指定位置
                layoutManager.scrollToPositionWithOffset(adapter.getScrollPosition(s), 0);
            }
        });
    }


    private void getData() {
        ...
        data是网络请求回来的数据
        ...
    
        // 处理数据
        // 根据字母分类
        List<String> characterList = new ArrayList<>(); // 首字母
        Map<String, List<Entity>> map = new LinkedHashMap<>();
        for (Entity bean : data) {
            if (map.containsKey(bean.getFirstEng())) {
                map.get(bean.getFirstEng()).add(bean);
            } else {
                List<Entity> list = new ArrayList<>();
                list.add(bean);
                map.put(bean.getFirstEng(), list);
                characterList.add(bean.getFirstEng());
            }
        }
        // 合并
        List<Entity> newList = new ArrayList<>();
        for (List<Entity> list : map.values()) {
            list.get(0).setShowFirm(true); // 每个分类的第一个显示字母
            list.get(list.size() - 1).setShowLine(true); // 每个分类的最后一个隐藏分割线
            newList.addAll(list);
        }
        // 设置activity的悬浮
        if (newList.size() > 0) {
            tvSuspensionBar.setText(newList.get(0).getFirstEng());
        }
        adapter.setCharacterList(characterList);
        adapter.setNewData(newList);
    }
}
public class MyAdapter extends BaseQuickAdapter<Entity, BaseViewHolder> {

    public MyAdapter() {
        super(R.layout.adapter_my);
    }

    @Override
    protected void convert(BaseViewHolder helper, Entity item) {
        helper.setText(R.id.tv_character, "" + item.getFirstEng())
                .setText(R.id.tv_name, "" + item.getName())
                .setGone(R.id.tv_character, item.isShowFirm()) // 每个分类的第一个有字母
                .setGone(R.id.line, !item.isShowLine()); // 每个分类的最后一个没有线
    }

    private List<String> mCharacterList;

    public void setCharacterList(List<String> characterList) {
        mCharacterList = characterList;
    }

    public int getScrollPosition(String character) {
        if (mData.size() != 0 && mCharacterList != null && mCharacterList.size() != 0) {
            if (mCharacterList.contains(character)) {
                for (int i = 0; i < mData.size(); i++) {
                    if (mData.get(i).getFirstEng().equals(character)) {
                        return i;
                    }
                }
            }
        }
        return -1; // -1不会滑动
    }
}
public class SideBar extends View {

    //SideBar上显示的字母
    private static final String[] CHARACTERS = {"A", "B", "C", "D", "E", "F", "G", "H", "I", "J", "K", "L", "M", "N", "O", "P", "Q", "R", "S", "T", "U", "V", "W", "X", "Y", "Z"};

    //SideBar的高度
    private int width;
    //SideBar的宽度
    private int height;
    //SideBar中每个字母的显示区域的高度
    private float cellHeight;
    //画字母的画笔
    private Paint characterPaint;
    //SideBar上字母绘制的矩形区域
    private Rect textRect;
    //手指触摸在SideBar上的横纵坐标
    private float touchY;
    private float touchX;

    private OnSelectListener listener;

    public SideBar(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
        init(context);
    }

    public SideBar(Context context, AttributeSet attrs) {
        super(context, attrs);
        init(context);
    }

    public SideBar(Context context) {
        super(context);
        init(context);
    }

    //初始化操作
    private void init(Context context) {
        textRect = new Rect();
        characterPaint = new Paint();
        characterPaint.setColor(0xFF4980F2);
    }

    @Override
    protected void onLayout(boolean changed, int left, int top, int right,
                            int bottom) {
        super.onLayout(changed, left, top, right, bottom);
        if (changed) { //在这里测量SideBar的高度和宽度
            width = getMeasuredWidth();
            height = getMeasuredHeight();
            //SideBar的高度除以需要显示的字母的个数,就是每个字母显示区域的高度
            cellHeight = height * 1.0f / CHARACTERS.length;
            //根据SideBar的宽度和每个字母显示的高度,确定绘制字母的文字大小,这样处理的好处是,对于不同分辨率的屏幕,文字大小是可变的
            int textSize = (int) ((width > cellHeight ? cellHeight : width) * (3.0f / 4));
            characterPaint.setTextSize(textSize);
        }
    }

    //画出SideBar上的字母
    private void drawCharacters(Canvas canvas) {
        for (int i = 0; i < CHARACTERS.length; i++) {
            String s = CHARACTERS[i];
            //获取画字母的矩形区域
            characterPaint.getTextBounds(s, 0, s.length(), textRect);
            //根据上一步获得的矩形区域,画出字母
            canvas.drawText(s,
                    (width - textRect.width()) / 2f,
                    cellHeight * i + (cellHeight + textRect.height()) / 2f,
                    characterPaint);
        }
    }

    @Override
    protected void onDraw(Canvas canvas) {
        super.onDraw(canvas);
        drawCharacters(canvas);
    }

    //根据手指触摸的坐标,获取当前选择的字母
    private String getHint() {
        int index = (int) (touchY / cellHeight);
        if (index >= 0 && index < CHARACTERS.length) {
            return CHARACTERS[index];
        }
        return null;
    }

    @Override
    public boolean onTouchEvent(MotionEvent event) {
        switch (event.getAction()) {
            case MotionEvent.ACTION_DOWN:
                //获取手指触摸的坐标
                touchX = event.getX();
                touchY = event.getY();
                if (listener != null && touchX > 0) {
                    listener.onSelect(getHint());
                }
                /*if (listener != null && touchX < 0) {
                    listener.onMoveUp(getHint());
                }*/
                return true;
            case MotionEvent.ACTION_MOVE:
                //获取手指触摸的坐标
                touchX = event.getX();
                touchY = event.getY();
                if (listener != null && touchX > 0) {
                    listener.onSelect(getHint());
                }
                /*if (listener != null && touchX < 0) {
                    listener.onMoveUp(getHint());
                }*/
                return true;
            case MotionEvent.ACTION_UP:
                touchY = event.getY();
                /*if (listener != null) {
                    listener.onMoveUp(getHint());
                }*/
                return true;
        }
        return super.onTouchEvent(event);
    }

    //监听器,监听手指在SideBar上按下和抬起的动作
    public interface OnSelectListener {
        void onSelect(String s);

//        void onMoveUp(String s);
    }

    //设置监听器
    public void setOnSelectListener(OnSelectListener listener) {
        this.listener = listener;
    }
}
public class Entity {
    private String firstEng; // 首字母
    private String name; // 内容
    private boolean showFirm; // 是否显示上面内容
    private boolean showLine; // 是否显示分割线
}

activity_my.xml ↓

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout
    xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:layout_height="match_parent">

    <android.support.v7.widget.RecyclerView
        android:id="@+id/recycler"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

    <SideBar
        android:id="@+id/side_bar"
        android:layout_width="30dp"
        android:layout_height="400dp"
        android:layout_alignParentRight="true"
        android:layout_centerVertical="true" />

    <TextView
        android:id="@+id/tv_suspension_bar"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:background="#F7F9FD"
        android:gravity="center_vertical"
        android:paddingLeft="16dp"
        android:text="A"
        android:textColor="#333333"
        android:textSize="16sp" />
</RelativeLayout>

adapter_my.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="wrap_content"
    android:background="#FFFFFF"
    android:clickable="true"
    android:focusable="true"
    android:foreground="?android:attr/selectableItemBackground"
    android:orientation="vertical">

    <TextView
        android:id="@+id/tv_character"
        android:layout_width="match_parent"
        android:layout_height="40dp"
        android:background="#F7F9FD"
        android:gravity="center_vertical"
        android:paddingLeft="16dp"
        android:textColor="#333333"
        android:textSize="16dp" />

    <TextView
        android:id="@+id/tv_name"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:layout_gravity="center"
        android:layout_marginLeft="20dp"
        android:textColor="#333333"
        android:textSize="15dp" />

    <View
        android:id="@+id/line"
        android:layout_width="match_parent"
        android:layout_height="1dp"
        android:layout_marginLeft="15dp"
        android:background="#F2F5F9" />
</LinearLayout>

MyAdapter 基于BRVAH 编写 BRVAH

BRVAH官方使用指南:https://www.jianshu.com/p/b343fcff51b0/

最后编辑于
©著作权归作者所有,转载或内容合作请联系作者
  • 序言:七十年代末,一起剥皮案震惊了整个滨河市,随后出现的几起案子,更是在滨河造成了极大的恐慌,老刑警刘岩,带你破解...
    沈念sama阅读 213,616评论 6 492
  • 序言:滨河连续发生了三起死亡事件,死亡现场离奇诡异,居然都是意外死亡,警方通过查阅死者的电脑和手机,发现死者居然都...
    沈念sama阅读 91,020评论 3 387
  • 文/潘晓璐 我一进店门,熙熙楼的掌柜王于贵愁眉苦脸地迎上来,“玉大人,你说我怎么就摊上这事。” “怎么了?”我有些...
    开封第一讲书人阅读 159,078评论 0 349
  • 文/不坏的土叔 我叫张陵,是天一观的道长。 经常有香客问我,道长,这世上最难降的妖魔是什么? 我笑而不...
    开封第一讲书人阅读 57,040评论 1 285
  • 正文 为了忘掉前任,我火速办了婚礼,结果婚礼上,老公的妹妹穿的比我还像新娘。我一直安慰自己,他们只是感情好,可当我...
    茶点故事阅读 66,154评论 6 385
  • 文/花漫 我一把揭开白布。 她就那样静静地躺着,像睡着了一般。 火红的嫁衣衬着肌肤如雪。 梳的纹丝不乱的头发上,一...
    开封第一讲书人阅读 50,265评论 1 292
  • 那天,我揣着相机与录音,去河边找鬼。 笑死,一个胖子当着我的面吹牛,可吹牛的内容都是我干的。 我是一名探鬼主播,决...
    沈念sama阅读 39,298评论 3 412
  • 文/苍兰香墨 我猛地睁开眼,长吁一口气:“原来是场噩梦啊……” “哼!你这毒妇竟也来了?” 一声冷哼从身侧响起,我...
    开封第一讲书人阅读 38,072评论 0 268
  • 序言:老挝万荣一对情侣失踪,失踪者是张志新(化名)和其女友刘颖,没想到半个月后,有当地人在树林里发现了一具尸体,经...
    沈念sama阅读 44,491评论 1 306
  • 正文 独居荒郊野岭守林人离奇死亡,尸身上长有42处带血的脓包…… 初始之章·张勋 以下内容为张勋视角 年9月15日...
    茶点故事阅读 36,795评论 2 328
  • 正文 我和宋清朗相恋三年,在试婚纱的时候发现自己被绿了。 大学时的朋友给我发了我未婚夫和他白月光在一起吃饭的照片。...
    茶点故事阅读 38,970评论 1 341
  • 序言:一个原本活蹦乱跳的男人离奇死亡,死状恐怖,灵堂内的尸体忽然破棺而出,到底是诈尸还是另有隐情,我是刑警宁泽,带...
    沈念sama阅读 34,654评论 4 337
  • 正文 年R本政府宣布,位于F岛的核电站,受9级特大地震影响,放射性物质发生泄漏。R本人自食恶果不足惜,却给世界环境...
    茶点故事阅读 40,272评论 3 318
  • 文/蒙蒙 一、第九天 我趴在偏房一处隐蔽的房顶上张望。 院中可真热闹,春花似锦、人声如沸。这庄子的主人今日做“春日...
    开封第一讲书人阅读 30,985评论 0 21
  • 文/苍兰香墨 我抬头看了看天上的太阳。三九已至,却和暖如春,着一层夹袄步出监牢的瞬间,已是汗流浃背。 一阵脚步声响...
    开封第一讲书人阅读 32,223评论 1 267
  • 我被黑心中介骗来泰国打工, 没想到刚下飞机就差点儿被人妖公主榨干…… 1. 我叫王不留,地道东北人。 一个月前我还...
    沈念sama阅读 46,815评论 2 365
  • 正文 我出身青楼,却偏偏与公主长得像,于是被迫代替她去往敌国和亲。 传闻我的和亲对象是个残疾皇子,可洞房花烛夜当晚...
    茶点故事阅读 43,852评论 2 351

推荐阅读更多精彩内容