woxingxiao
BubbleSeekBar
Java

A beautiful Android custom seekbar, which has a bubble view with progress appearing upon when seeking. 自定义SeekBar,进度变化更以可视化气泡样式呈现

Last updated Jul 6, 2026
3.4k
Stars
517
Forks
61
Issues
0
Stars/day
Attention Score
77
Language breakdown
Java 100.0%
Files click to expand
README

API License

中文说明

logo

A beautiful Android custom seek bar, which has a bubble view with progress appearing upon when seeking. Highly customizable, mostly demands has been considered. star or pull request will be welcomed


Screenshot

demo1 demo2
demo3 demo4

Download

The LATESTVERSION: Download
dependencies {
     // lite version (recommended)
     // e.g. implementation 'com.xw.repo:bubbleseekbar:3.20-lite'
        implementation 'com.xw.repo:bubbleseekbar:${LATEST_VERSION}-lite'

// enhanced version // e.g. implementation 'com.xw.repo:bubbleseekbar:3.20' // implementation 'com.xw.repo:bubbleseekbar:${LATEST_VERSION}' }

Usage

Init in xml

<com.xw.repo.BubbleSeekBar
    android:layoutwidth="matchparent"
    android:layoutheight="wrapcontent"
    app:bsbbubblecolor="@color/colorredlight"
    app:bsbbubbletext_color="@color/colorPrimaryDark"
    app:bsb_max="50.0"
    app:bsb_min="-50"
    app:bsb_progress="0"
    app:bsb_sec
    app:bsb_secti
    app:bsb_secti
    app:bsbshowprogressinfloat="true"
    app:bsbshowsecti
    app:bsbshowsecti
    app:bsbshowthumb_text="true"
    app:bsbtrackcolor="@color/colorredlight"/>
<com.xw.repo.BubbleSeekBar
    android:layoutwidth="matchparent"
    android:layoutheight="wrapcontent"
    app:bsbautoadjust_secti
    app:bsb_sec
    app:bsb_secti
    app:bsb_secti
    app:bsbshowsecti
    app:bsbshowsecti
    app:bsbshowthumb_text="true"
    app:bsbthumbtext_size="18sp"
    app:bsbtouchto_seek="true"/>

Init in java (not for lite version)

mBbubbleSeekBar.getConfigBuilder()
               .min(0.0)
               .max(50)
               .progress(20)
               .sectionCount(5)
               .trackColor(ContextCompat.getColor(getContext(), R.color.color_gray))
               .secondTrackColor(ContextCompat.getColor(getContext(), R.color.color_blue))
               .thumbColor(ContextCompat.getColor(getContext(), R.color.color_blue))
               .showSectionText()
               .sectionTextColor(ContextCompat.getColor(getContext(), R.color.colorPrimary))
               .sectionTextSize(18)
               .showThumbText()
               .thumbTextColor(ContextCompat.getColor(getContext(), R.color.color_red))
               .thumbTextSize(18)
               .bubbleColor(ContextCompat.getColor(getContext(), R.color.color_green))
               .bubbleTextSize(18)
               .showSectionMark()
               .seekBySection()
               .autoAdjustSectionMark()
               .sectionTextPosition(BubbleSeekBar.TextPosition.BELOWSECTIONMARK)
               .build();
Check out the demo for more details. Or download the apk: sample.apk

Attentions

  • There are two versions of this library.The differences as follow:
version | init | getter/setter -------- | ---|--- lite|xml|min, max, progress enhanced|xml, java|all attrs

lite version is recommended.

  • You must correct the offsets by setting ScrollListener when BubbleSeekBar's parent view is scrollable
(such as ScrollView, except ViewPager), otherwise, the appearing position of the bubble may be wrong. For example:
mContainer.setOnYourContainerScrollListener(new OnYourContainerScrollListener() {        @Override        public void onScroll() {            // call this method to correct offsets            mBubbleSeekBar.correctOffsetWhenContainerOnScrolling();        }    });
  • When customize the section texts, you should make sure that the attr bsbsectiontext_position
has been set to belowsectionmark at first, then follow the example below in your java code:
mBubbleSeekBar.setCustomSectionTextArray(new BubbleSeekBar.CustomSectionTextArray() {        @NonNull        @Override        public SparseArray<String> onCustomize(int sectionCount, @NonNull SparseArray<String> array) {            array.clear();            array.put(1, "bad");            array.put(4, "ok");            array.put(7, "good");            array.put(9, "great");

return array; } });

BTW, the attr bsbshowthumb_text will be set to false automatically for avoiding the text coverage display problems.
  • The attr bsbalwaysshow_bubble is not supported in the RecyclerView, ListView and GridView.

Attributes

attr.xml

How to submit a valid issue

  • Make sure you compiled the latest version. If it still doesn't work out, don't hesitate to open a new issue.
  • Describe the scenarios or operates when crash happened as much as possible(pictures would be better).
  • Tell me your device type and Android OS version is very helpful.
  • Paste your xml or java code.
  • Paste the crash log.
  • Please be polite.

License

Copyright 2017 woxingxiao

Licensed under the Apache License, Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy of the License at

http://www.apache.org/licenses/LICENSE-2.0

Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the specific language governing permissions and limitations under the License.

© 2026 GitRepoTrend · woxingxiao/BubbleSeekBar · Updated daily from GitHub