Home
last modified time | relevance | path

Searched refs:BackGestureIndicatorDrawable (Results 1 – 3 of 3) sorted by relevance

/packages/apps/Settings/src/com/android/settings/gestures/
DBackGestureIndicatorView.java38 private BackGestureIndicatorDrawable mLeftDrawable;
39 private BackGestureIndicatorDrawable mRightDrawable;
54 mLeftDrawable = new BackGestureIndicatorDrawable(context, false); in BackGestureIndicatorView()
55 mRightDrawable = new BackGestureIndicatorDrawable(context, true); in BackGestureIndicatorView()
86 BackGestureIndicatorDrawable indicator = leftIndicator ? mLeftDrawable : mRightDrawable; in setIndicatorWidth()
DBackGestureIndicatorDrawable.java38 public class BackGestureIndicatorDrawable extends Drawable { class
88 public BackGestureIndicatorDrawable(Context context, boolean reversed) { in BackGestureIndicatorDrawable() method in BackGestureIndicatorDrawable
/packages/apps/Settings/tests/robotests/src/com/android/settings/gestures/
DBackGestureIndicatorViewTest.java45 private BackGestureIndicatorDrawable mLeftDrawable;
46 private BackGestureIndicatorDrawable mRightDrawable;
55 mLeftDrawable = (BackGestureIndicatorDrawable) ((ImageView) mView.findViewById( in setUp()
57 mRightDrawable = (BackGestureIndicatorDrawable) ((ImageView) mView.findViewById( in setUp()