コード例 #1
0
 /** callback from the suggestion dropdown copy text to input field and stay in edit mode */
 @Override
 public void onCopySuggestion(String text) {
   mUrlInput.setText(text, true);
   if (text != null) {
     mUrlInput.setSelection(text.length());
   }
 }