Searched defs:mBeginSoftInputOnLongPressCommand (Results 1 - 1 of 1) sorted by relevance

/frameworks/base/core/java/android/widget/
H A DNumberPicker.java334 private BeginSoftInputOnLongPressCommand mBeginSoftInputOnLongPressCommand; field in class:NumberPicker
1783 if (mBeginSoftInputOnLongPressCommand == null) {
1784 mBeginSoftInputOnLongPressCommand = new BeginSoftInputOnLongPressCommand();
1786 removeCallbacks(mBeginSoftInputOnLongPressCommand);
1788 postDelayed(mBeginSoftInputOnLongPressCommand, ViewConfiguration.getLongPressTimeout());
1795 if (mBeginSoftInputOnLongPressCommand != null) {
1796 removeCallbacks(mBeginSoftInputOnLongPressCommand);
1810 if (mBeginSoftInputOnLongPressCommand != null) {
1811 removeCallbacks(mBeginSoftInputOnLongPressCommand);

Completed in 101 milliseconds