コード例 #1
0
 /**
  * Set the selected position of the list. Only valid when {@link #isShowing()} == {@code true}.
  *
  * @param position List position to set as selected.
  */
 public void setSelection(int position) {
   DropDownListView list = mDropDownList;
   if (isShowing() && list != null) {
     list.mListSelectionHidden = false;
     list.setSelection(position);
     if (list.getChoiceMode() != ListView.CHOICE_MODE_NONE) {
       list.setItemChecked(position, true);
     }
   }
 }