Home | History | Annotate | Download | only in widget

Lines Matching refs:track

50      * Indicate whether the horizontal scrollbar track should always be drawn regardless of the
53 * @param alwaysDrawTrack Set to true if the track should always be drawn
60 * Indicate whether the vertical scrollbar track should always be drawn regardless of the
63 * @param alwaysDrawTrack Set to true if the track should always be drawn
70 * Indicates whether the vertical scrollbar track should always be drawn regardless of the
78 * Indicates whether the horizontal scrollbar track should always be drawn regardless of the
148 Drawable track;
150 track = mVerticalTrack;
152 track = mHorizontalTrack;
154 if (track != null) {
156 track.setBounds(bounds);
158 track.draw(canvas);
192 public void setVerticalTrackDrawable(Drawable track) {
193 mVerticalTrack = track;
202 public void setHorizontalTrackDrawable(Drawable track) {
203 mHorizontalTrack = track;