我不知道如何设置选中默认项。
我想在启动时选中此默认项。该怎么做?
<com.toptoche.searchablespinnerlibrary.SearchableSpinner
android:spinnerMode="dialog"
android:id="@+id/sex"
android:layout_width="match_parent"
android:layout_height="wrap_conten"/>
<com.toptoche.searchablespinnerlibrary.SearchableSpinner
android:spinnerMode="dialog"
android:id="@+id/category"
android:layout_width="match_parent"
android:layout_height="wrap_conten"/>
在课堂上
final ArrayAdapter<String> adapterSex = new ArrayAdapter<String>(
SearchActivity.this,
android.R.layout.simple_list_item_single_choice,
listSex);
sexS.setAdapter(adapterSex);
final ArrayAdapter<String> adapterCategory = new ArrayAdapter<String(
SearchActivity.this,
android.R.layout.simple_list_item_single_choice,
listCategory);
categoryS.setAdapter(adapterCategory);
答案 0 :(得分:0)
您可以在Java中键入:
CheckBox checkBox = (CheckBox) findViewById(R.id.checkbox1);
if (checkBox.isChecked()) {
checkBox.setChecked(false);
}
或使用XML:
android:checked="false"