我正在创建一个简单的待办事项列表。所以,我有活动(NewTaskActivity) Xml代码:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<RelativeLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:scrollbars="vertical"
android:layout_width="match_parent"
android:layout_height="match_parent">
<EditText
android:id="@+id/et_new_task_input"
android:hint="@string/new_task_input_hint"
android:textSize="15sp"
android:layout_margin="20dp"
android:layout_width="match_parent"
android:layout_height="wrap_content" />
</ScrollView>
<android.support.design.widget.FloatingActionButton
android:id="@+id/fb_float_button_apply"
android:src="@drawable/ic_check"
app:fabSize="normal"
android:layout_margin="10dp"
android:layout_alignParentBottom="true"
android:layout_alignParentRight="true"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentEnd="true" />
</RelativeLayout>
</LinearLayout>
我有一个类 NewTaskActivity.java :
public class NewTaskActivity extends AppCompatActivity {
private DBHelper dbHelper;
private SQLiteDatabase database;
@Override
protected void onCreate (Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.new_task_activity);
dbHelper = new DBHelper(NewTaskActivity.this);
database = dbHelper.getWritableDatabase();
FloatingActionButton floatingActionButton =
findViewById(R.id.fb_float_button_apply);
floatingActionButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick (View v) {
addNewTask();
}
});
}
@Override
protected void onDestroy () {
super.onDestroy();
dbHelper.close();
}
@SuppressLint("SimpleDateFormat")
private void addNewTask () {
EditText task_input = findViewById(R.id.et_new_task_input);
if (!task_input.getText().toString().equals("")) {
ContentValues contentValues = new ContentValues();
contentValues.put("task", task_input.getText().toString());
contentValues.put("date",
new SimpleDateFormat("dd/MM/yymm:hh").
format(Calendar.getInstance().getTime()));
database.insert("tasks", null, contentValues);
finish();
}
}
}
在此类(NewTaskActivity.java)中,我想在数据库中添加数据。 数据库类(DBHelper.java):
public class DBHelper extends SQLiteOpenHelper {
private static final int DB_VERSION = 2;
private static final String DB_NAME = "simpletodo";
public DBHelper (@Nullable Context context) {
super(context, DB_NAME, null, DB_VERSION);
}
@Override
public void onCreate (SQLiteDatabase db) {
db.execSQL("CREATE TABLE IF NOT EXISTS tasks (_id INT NOT NULL PRIMARY
KEY, task TEXT NOT NULL, date TEXT NOT NULL)");
}
@Override
public void onUpgrade (SQLiteDatabase db, int oldVersion, int newVersion) {
db.execSQL("DROP TABLE IF EXISTS tasks");
onCreate(db);
}
}
我的数据没有插入数据库。为什么?我在“插入”之后和“完成”之前使用Log.d()在 NewTaskActivity.java 中检查了数据,但它们什么也没给我。我稍后会完成待办事项列表,但我没有此类问题。
答案 0 :(得分:0)
您的CREATE语句将列_id
定义为INT NOT NULL PRIMARY KEY
,但不是 AUTOINCREMENT
,因此您必须自己提供,但不必提供。
当然,最好设为AUTOINCREMENT
:
_id INTEGER NOT NULL PRIMARY KEY AUTOINCREMENT UNIQUE
编辑:从仿真器/设备上卸载应用程序,然后运行修改后的代码,否则更改不会影响您的数据库,因为onCreate()
的{{1}}方法不会被触发。
答案 1 :(得分:0)
您能否更改_id以支持 AUTOINCREMENT 并重试?因为您没有将任何值传递给它,并且您将其定义为主键,所以这意味着NOT NULL。
PS:您可以从_id定义中删除“ not null”,因为主键表示不为null。
compile(name: 'HERE-sdk', ext: 'aar')
也不要忘记更改数据库版本或重新安装应用程序以强制重新创建db(数据库)。