Example usage for android.widget SeekBar subclass-usage

List of usage examples for android.widget SeekBar subclass-usage

Introduction

In this page you can find the example usage for android.widget SeekBar subclass-usage.

Usage

From source file com.viewpagerindicator.ProgressIndicator.java

/**
 * todo use smooth seekBar.
 * Created by cindy on 5/15/14.
 */
public class ProgressIndicator extends SeekBar implements PageIndicator {

From source file com.android.settings.widget.LabeledSeekBar.java

/**
 * LabeledSeekBar represent a seek bar assigned with labeled, discrete values.
 * It pretends to be a group of radio button for AccessibilityServices, in order to adjust the
 * behavior of these services to keep the mental model of the visual discrete SeekBar.
 */
public class LabeledSeekBar extends SeekBar {

From source file com.facebook.react.views.slider.ReactSlider.java

/**
 * Slider that behaves more like the iOS one, for consistency.
 * <p/>
 * On iOS, the value is 0..1. Android SeekBar only supports integer values.
 * For consistency, we pretend in JS that the value is 0..1 but set the
 * SeekBar value to 0..100.

From source file com.h6ah4i.android.widget.verticalseekbar.VerticalSeekBar.java

public class VerticalSeekBar extends SeekBar {
    public static final int ROTATION_ANGLE_CW_90 = 90;
    public static final int ROTATION_ANGLE_CW_270 = 270;

    private boolean mIsDragging;
    private Drawable mThumb_;

From source file com.anl.wxb.jieqi.view.VerticalSeekBar.java

public class VerticalSeekBar extends SeekBar {
    public static final int ROTATION_ANGLE_CW_90 = 90;
    public static final int ROTATION_ANGLE_CW_270 = 270;

    private boolean mIsDragging;
    private Drawable mThumb_;

From source file com.albedinsky.android.ui.widget.SeekBarWidget.java

/**
 * Extended version of {@link android.widget.SeekBar}. This updated SeekBar supports tinting for the
 * Android versions below {@link android.os.Build.VERSION_CODES#LOLLIPOP LOLLIPOP} and other useful
 * features described below including <b>discrete</b> mode that should be enabled whenever a particular
 * SeekBarWidget represents setting for which a user needs to know the exact value of the setting.
 *

From source file com.skytree.epubtest.BookViewActivity.java

class SkySeekBar extends SeekBar {
    boolean isReversed = false;

    public SkySeekBar(Context context) {
        super(context);
    }