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

时间:2013-10-31 14:04:38

标签: android sqlite dynamic android-edittext

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

该表仅包含“_Id”列和“注释”列。我是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;
}

}

以下是我的主要活动中的一些动态创建视图的代码。

// 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);
}

2 个答案:

答案 0 :(得分:1)

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

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

所以你需要:

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);

然而,最佳做法是使用?你可以使用样式参数。

答案 1 :(得分:0)

乍一看,我会说这就是问题所在:

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

您不应传递“值”对象,而是传递评论。