File tree Expand file tree Collapse file tree 2 files changed +11
-0
lines changed
Expand file tree Collapse file tree 2 files changed +11
-0
lines changed Original file line number Diff line number Diff line change @@ -25899,6 +25899,7 @@ package android.widget {
2589925899 ctor public AbsSeekBar(android.content.Context, android.util.AttributeSet);
2590025900 ctor public AbsSeekBar(android.content.Context, android.util.AttributeSet, int);
2590125901 method public int getKeyProgressIncrement();
25902+ method public android.graphics.drawable.Drawable getThumb();
2590225903 method public int getThumbOffset();
2590325904 method public void setKeyProgressIncrement(int);
2590425905 method public void setThumb(android.graphics.drawable.Drawable);
Original file line number Diff line number Diff line change @@ -132,6 +132,16 @@ public void setThumb(Drawable thumb) {
132132 }
133133 }
134134
135+ /**
136+ * Return the drawable used to represent the scroll thumb - the component that
137+ * the user can drag back and forth indicating the current value by its position.
138+ *
139+ * @return The current thumb drawable
140+ */
141+ public Drawable getThumb () {
142+ return mThumb ;
143+ }
144+
135145 /**
136146 * @see #setThumbOffset(int)
137147 */
You can’t perform that action at this time.
0 commit comments