我正在开发一个 android 项目,并且有一个微调器,其中包含来自 string.xml 文件中的字符串数组的项目。
在 strings.xml 我有以下数组
<string-array name="array_loginType">
<item>Select Login Type</item>
<item>Website</item>
<item>App</item>
<item>Other</item>
</string-array>
并且微调器包含以下 XML
<Spinner android:id="@+id/add_cboLoginType"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:prompt="@string/add_select_login_type"
android:padding="4dp"
android:entries="@array/array_loginType"/>
在某些时候,用户可以从微调器中选择项目,并在提交时将项目保存在数据库中。然后,我允许用户编辑详细信息,并尝试根据从数据库中检索到的项目在微调器中设置所选项目。即,如果数据库中保存的项目说Website
然后Website
将在微调器中被选中。
感谢您的任何帮助,您可以提供。