Home | History | Annotate | Download | only in touchmode

Lines Matching defs:mButton

34     private Button mButton;
46 mButton = getActivity().getButton();
51 assertFalse("should not be in touch mode to start off", mButton.isInTouchMode());
58 assertInTouchModeAfterTap(this, mButton);
59 assertTrue("should be in touch mode", mButton.isInTouchMode());
66 getActivity().runOnUiThread(() -> mButton.requestFocus());
68 assertTrue("button should have focus", mButton.isFocused());
71 assertTrue("clicking edit text should have entered touch mode", mButton.isInTouchMode());
80 getActivity().runOnUiThread(() -> mButton.requestFocus());
84 mButton.isFocused());
86 assertInTouchModeAfterClick(this, mButton);
87 assertTrue("should be in touch mode", mButton.isInTouchMode());