我的活动中有TextViews (DropDownList)和EditTexts。
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent" >
<TextView
android:id="@+DropDownList/tv_SubBrand"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<TextView
android:id="@+DropDownList/tv_InfoType"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
<EditText
android:id="@+id/txt_Remarks"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</LinearLayout>
我想将用户输入保存到我的数据库中,但我的 Textviews 出现问题,因为它是一个 DropDownList,其中在 DropDownList 中有复选框,它可以处理多个选项。另外,我不能将它转换为 OnCreate。
除了使用 SharedPreferences 之外,还有其他解决方案吗?使用ArrayList可以解决吗?如果是的话,你能告诉我怎么做吗?