|
14 | 14 | limitations under the License.
|
15 | 15 | */
|
16 | 16 |
|
17 |
| -package com.yahoo.mobile.client.android.util; |
| 17 | +package com.yahoo.mobile.client.android.util.rangeseekbar; |
18 | 18 |
|
19 | 19 | import android.content.Context;
|
20 | 20 | import android.content.res.TypedArray;
|
|
27 | 27 | import android.view.MotionEvent;
|
28 | 28 | import android.view.ViewConfiguration;
|
29 | 29 | import android.widget.ImageView;
|
| 30 | + |
| 31 | +import com.yahoo.mobile.client.android.util.PixelUtil; |
| 32 | + |
30 | 33 | import java.math.BigDecimal;
|
31 | 34 |
|
32 | 35 | /**
|
33 | 36 | * Widget that lets users select a minimum and maximum value on a given numerical range.
|
34 |
| - * The range value types can be one of Long, Double, Integer, Float, Short, Byte or BigDecimal.<br /> |
35 |
| - * <br /> |
| 37 | + * The range value types can be one of Long, Double, Integer, Float, Short, Byte or BigDecimal.<br> |
| 38 | + * <br> |
36 | 39 | * Improved {@link android.view.MotionEvent} handling for smoother use, anti-aliased painting for improved aesthetics.
|
37 | 40 | *
|
38 | 41 | * @param <T> The Number type of the range values. One of Long, Double, Integer, Float, Short, Byte or BigDecimal.
|
39 |
| - * <p/> |
40 |
| - * <p/> |
41 |
| - * <p/> |
42 |
| - * https://code.google.com/p/range-seek-bar/ |
43 |
| - * <p/> |
44 |
| - * Apache License |
45 |
| - * <p/> |
46 |
| - * <p/> |
47 | 42 | * @author Stephan Tittel ([email protected])
|
48 | 43 | * @author Peter Sinnott ([email protected])
|
49 | 44 | * @author Thomas Barrasso ([email protected])
|
@@ -78,7 +73,7 @@ public class RangeSeekBar<T extends Number> extends ImageView {
|
78 | 73 | private boolean notifyWhileDragging = false;
|
79 | 74 | private OnRangeSeekBarChangeListener<T> listener;
|
80 | 75 | /**
|
81 |
| - * Default color of a {@link com.yahoo.mobile.client.android.util.RangeSeekBar}, #FF33B5E5. This is also known as "Ice Cream Sandwich" blue. |
| 76 | + * Default color of a {@link RangeSeekBar}, #FF33B5E5. This is also known as "Ice Cream Sandwich" blue. |
82 | 77 | */
|
83 | 78 | public static final int DEFAULT_COLOR = Color.argb(0xFF, 0x33, 0xB5, 0xE5);
|
84 | 79 | /**
|
|
0 commit comments