woxingxiao / BubbleSeekBar

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

rtl option irreversible #125

Closed hgourvest closed 6 years ago

hgourvest commented 6 years ago

using BubbleConfigBuilder you can change to RTL but you can't revert this setting to LTR. I would suggest this:

public BubbleConfigBuilder rtl(boolean value) {
    this.rtl = value;
    return this;
}
woxingxiao commented 6 years ago

The default is from left to right. Why bother?

hgourvest commented 6 years ago

I need to let the user change the reading direction when he want, it is for a comic book reader.

woxingxiao commented 6 years ago

Suggestion accepted!

hgourvest commented 6 years ago

thanks!