gpt4 book ai didi

android - 从 Android SQLite 数据库中删除动态创建的 EditText

转载 作者:行者123 更新时间:2023-11-30 03:17:54 25 4
gpt4 key购买 nike

我的 Activity 布局包含一个我动态创建的 ListView 类型列表(我没有使用实际的 ListView)。单击添加按钮,创建包含 EditText 和删除按钮的行。用户的输入从 EditText 保存到 SQLite 表中。除删除按钮外,一切正常。我可以删除 View ,但数据仍保留在表中。单击删除按钮时模拟器崩溃。

该表仅包含“_Id”列和“Comment”列。我是 Android 开发的初学者,但对 SQLite 尤其缺乏经验;这是我的第一次尝试。对不起,如果我添加了太多代码。我添加了整个数据源类,但感觉有点过火了。如果您想了解更多,请告诉我,因为我永远不知道我所附的所有内容是否有用。

这是我将行的 EditText 输入保存到数据库的方法。

public Comment createComment(String comment) {
ContentValues values = new ContentValues();
values.put(SQLiteHelper.COLUMN_COMMENT, comment);
long insertId = database.insert(SQLiteHelper.TABLE_COMMENTS, null,
values);
Cursor cursor = database.query(SQLiteHelper.TABLE_COMMENTS,
allColumns, SQLiteHelper.COLUMN_ID + " = " + insertId, null,
null, null, null);
cursor.moveToFirst();
Comment newComment = cursorToComment(cursor);
cursor.close();
return newComment;
}

这是我尝试从数据库中删除一行数据的尝试。

public void deleteComment(String comment) {
ContentValues values = new ContentValues();
values.put(SQLiteHelper.COLUMN_COMMENT, comment);

database.delete(SQLiteHelper.TABLE_COMMENTS, SQLiteHelper.COLUMN_COMMENT
+ " = " + values, null);

}

这是我的评论类。不确定是否有必要考虑评论只是 EditText 中的一个字符串。我从网上借了很多代码,所以我不太清楚应该如何将它们放在一起。

public class Comment {
private long id;
private String comment;

public long getId() {
return id;
}

public void setId(long id) {
this.id = id;
}

public String getComment() {
return comment;
}

public void setComment(String comment) {
this.comment = comment;
}

// Will be used by the ArrayAdapter in the ListView
@Override
public String toString() {
return comment;
}

这是我主要 Activity 中动态创建 View 的一些代码。

// onClick handler for the "Add new" button;
public void onAddNewClickedStrengths(View v) {
// Inflate a new row and hide the button self.

inflateEditRowStrengths(null);


v.setVisibility(View.GONE);
}



// Helper for inflating a row
private void inflateEditRowStrengths(String name) {

idCount++;
LayoutInflater inflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
final View rowView = inflater.inflate(R.layout.list_row, null);
final ImageButton deleteButton = (ImageButton) rowView
.findViewById(R.id.button);
final EditText editText = (EditText) rowView
.findViewById(R.id.editText);
editText.setId(idCount);


editText.setOnFocusChangeListener(new View.OnFocusChangeListener() {

public void onFocusChange(View v, boolean hasFocus) {
if(!hasFocus) {

comment = datasource.createComment(editText.getText().toString());

}

}
});


load.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {


datasource = new CommentsDataSource(getBaseContext());
datasource.open();

List<Comment> values = datasource.getAllComments();

for (int i = 1; i < values.size(); i++){
inflateEditRowStrengths(values.get(i).toString());

}



}
});


clear.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {

datasource.deleteAllComments();

List<Comment> values = datasource.getAllComments();

for (int i = 0; i < values.size(); i++){
inflateEditRowStrengths(values.get(i).toString());

}
}
});



deleteButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {

String toFind = editText.getText().toString();

datasource.deleteComment(toFind);
mContainerViewStrengths.removeView(rowView);



}
});



if (name != null && !name.isEmpty()) {
editText.setText(name);
} else {
mExclusiveEmptyView = rowView;
deleteButton.setVisibility(View.INVISIBLE);
}

// A TextWatcher to control the visibility of the "Add new" button and
// handle the exclusive empty view.
editText.addTextChangedListener(new TextWatcher() {

@Override
public void afterTextChanged(Editable s) {

if (s.toString().isEmpty()) {
mAddButtonStrengths.setVisibility(View.GONE);
deleteButton.setVisibility(View.INVISIBLE);

if (mExclusiveEmptyView != null
&& mExclusiveEmptyView != rowView) {
mContainerViewStrengths.removeView(mExclusiveEmptyView);
editText.getText();
}
mExclusiveEmptyView = rowView;
} else {

if (mExclusiveEmptyView == rowView) {
mExclusiveEmptyView = null;
}

mAddButtonStrengths.setVisibility(View.VISIBLE);
deleteButton.setVisibility(View.VISIBLE);

}
}

@Override
public void beforeTextChanged(CharSequence s, int start, int count,
int after) {
}

@Override
public void onTextChanged(CharSequence s, int start, int before,
int count) {
}
});

// Inflate at the end of all rows but before the "Add new" button


mContainerViewStrengths.addView(rowView, mContainerViewStrengths.getChildCount() - 1);
}

最佳答案

ContentValues 用于插入或更新,而不是用于删除。对于删除调用,您提供以下三个参数:

  • 表名
  • where 子句
  • 替换 where 子句中的 ?s 的 where 子句参数

所以你需要:

String where = SQLiteHelper.COLUMN_COMMENT + " = ? ";
String[] whereArgs = new String[] {comment};
database.delete(SQLiteHelper.TABLE_COMMENTS, where, whereArgs);

作为 SQL,在内部编译为:

DELETE FROM COMMENTS WHERE comment = 'the value of comment'

请注意,如果您愿意,可以将参数直接放在 where 子句中:

String where = SQLiteHelper.COLUMN_COMMENT + " = '" + comment + "'";
database.delete(SQLiteHelper.TABLE_COMMENTS, where, null);

然而,最好的做法是使用 ?尽可能设置参数样式。

关于android - 从 Android SQLite 数据库中删除动态创建的 EditText,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/19708680/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com