要快速设置 Android 选择框的默认值,可以使用如下方法:
<Spinner
android:id="@+id/spinner"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:entries="@array/options"
android:defaultValue="1" />
Spinner spinner = findViewById(R.id.spinner);
spinner.setSelection(1);
以上方法可以根据需要设置选择框的默认选项值,确保用户在打开应用程序或进入页面时能够看到预设的默认值。