Donate to e Foundation | Murena handsets with /e/OS | Own a part of Murena! Learn more

Commit 3004cc50 authored by Adam Powell's avatar Adam Powell
Browse files

Add SeekBar property accessors to match available style attributes

Bug 6103624

Change-Id: I7bc863250f3b156cf6663e484baab2c35a949db5
parent ef08c1cd
Loading
Loading
Loading
Loading
+1 −0
Original line number Diff line number Diff line
@@ -25899,6 +25899,7 @@ package android.widget {
    ctor public AbsSeekBar(android.content.Context, android.util.AttributeSet);
    ctor public AbsSeekBar(android.content.Context, android.util.AttributeSet, int);
    method public int getKeyProgressIncrement();
    method public android.graphics.drawable.Drawable getThumb();
    method public int getThumbOffset();
    method public void setKeyProgressIncrement(int);
    method public void setThumb(android.graphics.drawable.Drawable);
+10 −0
Original line number Diff line number Diff line
@@ -132,6 +132,16 @@ public abstract class AbsSeekBar extends ProgressBar {
        }
    }

    /**
     * Return the drawable used to represent the scroll thumb - the component that
     * the user can drag back and forth indicating the current value by its position.
     *
     * @return The current thumb drawable
     */
    public Drawable getThumb() {
        return mThumb;
    }

    /**
     * @see #setThumbOffset(int)
     */