android studio sql保存三个checkbox完整代码
时间: 2023-07-01 13:24:27 浏览: 84
以下是一个简单的Android Studio项目,可以保存三个checkbox的状态到SQLite数据库中。在这个项目中,我们使用了Switch控件来展示和操作checkbox。
MainActivity.java:
```
public class MainActivity extends AppCompatActivity {
private Switch switch1, switch2, switch3;
private SQLiteDatabase db;
@Override
protected void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
// 打开或创建数据库
DBHelper dbHelper = new DBHelper(this);
db = dbHelper.getWritableDatabase();
// 获取Switch控件
switch1 = findViewById(R.id.switch1);
switch2 = findViewById(R.id.switch2);
switch3 = findViewById(R.id.switch3);
// 加载checkbox状态
loadCheckboxState();
}
// 加载checkbox状态
private void loadCheckboxState() {
Cursor cursor = db.rawQuery("SELECT * FROM checkbox_state", null);
while (cursor.moveToNext()) {
String name = cursor.getString(cursor.getColumnIndex("name"));
int state1 = cursor.getInt(cursor.getColumnIndex("state1"));
int state2 = cursor.getInt(cursor.getColumnIndex("state2"));
int state3 = cursor.getInt(cursor.getColumnIndex("state3"));
if (name.equals("checkbox1")) {
switch1.setChecked(state1 == 1);
} else if (name.equals("checkbox2")) {
switch2.setChecked(state2 == 1);
} else if (name.equals("checkbox3")) {
switch3.setChecked(state3 == 1);
}
}
cursor.close();
}
// 保存checkbox状态
private void saveCheckboxState() {
ContentValues values = new ContentValues();
if (switch1.isChecked()) {
values.put("state1", 1);
} else {
values.put("state1", 0);
}
if (switch2.isChecked()) {
values.put("state2", 1);
} else {
values.put("state2", 0);
}
if (switch3.isChecked()) {
values.put("state3", 1);
} else {
values.put("state3", 0);
}
db.update("checkbox_state", values, "name=?", new String[]{"checkbox1"});
db.update("checkbox_state", values, "name=?", new String[]{"checkbox2"});
db.update("checkbox_state", values, "name=?", new String[]{"checkbox3"});
}
@Override
protected void onDestroy() {
super.onDestroy();
// 关闭数据库
db.close();
}
public void onCheckboxClicked(View view) {
// 保存checkbox状态
saveCheckboxState();
}
}
```
DBHelper.java:
```
public class DBHelper extends SQLiteOpenHelper {
private static final String DB_NAME = "checkbox.db";
private static final int DB_VERSION = 1;
public DBHelper(Context context) {
super(context, DB_NAME, null, DB_VERSION);
}
@Override
public void onCreate(SQLiteDatabase db) {
// 创建checkbox_state表
db.execSQL("CREATE TABLE checkbox_state (name TEXT PRIMARY KEY, state1 INTEGER, state2 INTEGER, state3 INTEGER)");
// 初始化checkbox状态
ContentValues values = new ContentValues();
values.put("name", "checkbox1");
values.put("state1", 0);
values.put("state2", 0);
values.put("state3", 0);
db.insert("checkbox_state", null, values);
values.clear();
values.put("name", "checkbox2");
values.put("state1", 0);
values.put("state2", 0);
values.put("state3", 0);
db.insert("checkbox_state", null, values);
values.clear();
values.put("name", "checkbox3");
values.put("state1", 0);
values.put("state2", 0);
values.put("state3", 0);
db.insert("checkbox_state", null, values);
}
@Override
public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
db.execSQL("DROP TABLE IF EXISTS checkbox_state");
onCreate(db);
}
}
```
activity_main.xml:
```
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<Switch
android:id="@+id/switch1"
android:text="Checkbox 1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="onCheckboxClicked"/>
<Switch
android:id="@+id/switch2"
android:text="Checkbox 2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="onCheckboxClicked"/>
<Switch
android:id="@+id/switch3"
android:text="Checkbox 3"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:onClick="onCheckboxClicked"/>
</LinearLayout>
```
在这个项目中,我们创建了一个名为checkbox_state的表来保存checkbox的状态。在MainActivity中,我们使用Switch控件来展示和操作checkbox,并在onCreate方法中加载checkbox的状态。在onCheckboxClicked方法中,我们保存最新的checkbox状态到数据库中。在DBHelper中,我们定义了数据库的版本和创建checkbox_state表的SQL语句。
阅读全文