You've already forked android_translation_layer
mirror of
https://gitlab.com/android_translation_layer/android_translation_layer.git
synced 2025-10-27 11:48:10 -07:00
29 lines
621 B
Java
29 lines
621 B
Java
|
|
package android.widget;
|
||
|
|
|
||
|
|
import android.content.Context;
|
||
|
|
import android.graphics.Canvas;
|
||
|
|
import android.graphics.drawable.Drawable;
|
||
|
|
import android.util.AttributeSet;
|
||
|
|
|
||
|
|
public abstract class AbsSeekBar extends ProgressBar {
|
||
|
|
|
||
|
|
public AbsSeekBar(Context context) {
|
||
|
|
super(context);
|
||
|
|
}
|
||
|
|
|
||
|
|
public AbsSeekBar(Context context, AttributeSet attributeSet) {
|
||
|
|
super(context, attributeSet);
|
||
|
|
}
|
||
|
|
|
||
|
|
public Drawable getThumb() {
|
||
|
|
return new Drawable() {
|
||
|
|
@Override
|
||
|
|
public void draw(Canvas canvas) {
|
||
|
|
// TODO Auto-generated method stub
|
||
|
|
throw new UnsupportedOperationException("Unimplemented method 'draw'");
|
||
|
|
}
|
||
|
|
};
|
||
|
|
}
|
||
|
|
|
||
|
|
}
|