From 3004cc50f22e724efb791aa80e9d6c566d2ddb5d Mon Sep 17 00:00:00 2001 From: Adam Powell Date: Wed, 21 Mar 2012 17:50:51 -0700 Subject: Add SeekBar property accessors to match available style attributes Bug 6103624 Change-Id: I7bc863250f3b156cf6663e484baab2c35a949db5 --- api/current.txt | 1 + core/java/android/widget/AbsSeekBar.java | 10 ++++++++++ 2 files changed, 11 insertions(+) diff --git a/api/current.txt b/api/current.txt index 2532716d57bd..e7ac4aedd170 100644 --- a/api/current.txt +++ b/api/current.txt @@ -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); diff --git a/core/java/android/widget/AbsSeekBar.java b/core/java/android/widget/AbsSeekBar.java index e36afa3c81a5..ca5648a06ed4 100644 --- a/core/java/android/widget/AbsSeekBar.java +++ b/core/java/android/widget/AbsSeekBar.java @@ -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) */ -- cgit v1.2.3-59-g8ed1b