()
| 288 | et.requestFocus(); |
| 289 | et.postDelayed(new Runnable() { |
| 290 | @Override |
| 291 | public void run() { |
| 292 | InputMethodManager imm = (InputMethodManager) et.getContext().getSystemService(Context.INPUT_METHOD_SERVICE); |
| 293 | imm.showSoftInput(et, 0); |
| 294 | } |
| 295 | }, 300); |
| 296 | } |
| 297 |
nothing calls this directly
no test coverage detected