更新和删除列表视图中的行

Posted

技术标签:

【中文标题】更新和删除列表视图中的行【英文标题】:updating and deleting row in listview 【发布时间】:2016-05-04 16:25:23 【问题描述】:

我知道这个问题并不新鲜,但我在这里找到的所有其他示例都不起作用。这就是我给你写信的原因。

我创建了一个图书应用程序,您可以在其中保存来自 googlebooks 的图书数据,并将数据保存到一个 sqlite 数据库中。 bookdata 将显示在列表视图中。 如果单击一行,则该行的所有数据将显示在另一个活动的 EdittExts 中 - 看起来像详细的书籍视图。 一些示例图片:Listview; detailed bookview

现在我想为用户提供编辑这些书籍信息的可能性。 我实现了一些代码来更新和删除信息,并从 Logcat 获取信息,即创建了 Db,但是当我返回 ListView 时,没有更新或删除数据。

我使用了来自 youtube 的名为“android Studio 教程 - 37 - 更新数据库”的视频来转换为我的解决方案

也许你可以帮助我。

按照我的图书信息代码:

protected void onCreate(Bundle savedInstanceState) 
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_book_info);
        bookDBHelper = new BookDBHelper(this);
        Typeface myTypeface = Typeface.createFromAsset(getAssets(), "Lobster.ttf");
        TextView myTextView = (TextView) findViewById(R.id.yourbookinfo);
        myTextView.setTypeface(myTypeface);

        btn_update = (Button) findViewById(R.id.button_update);

        Intent intent = getIntent();

        String secret_title = intent.getStringExtra(BookDataListActivity.EXTRA_MSG1);
        Secret_editText_title = (EditText) findViewById(R.id.secret_edittext_title);
        Secret_editText_title.setText(secret_title);

        String book_title = intent.getStringExtra(BookDataListActivity.EXTRA_MSG1);
        passedbooktitle = (EditText) findViewById(R.id.passed_booktitle);
        passedbooktitle.setText(book_title);

        String book_author = intent.getStringExtra(BookDataListActivity.EXTRA_MSG2);
        passedbookauthor = (EditText) findViewById(R.id.passed_bookauthor);
        passedbookauthor.setText(book_author);

        String book_date = intent.getStringExtra(BookDataListActivity.EXTRA_MSG3);
        passedbookdate = (EditText) findViewById(R.id.passed_bookdate);
        passedbookdate.setText(book_date);

        String book_rating = intent.getStringExtra(BookDataListActivity.EXTRA_MSG4);
        passedbookrating = (EditText) findViewById(R.id.passed_bookrating);
        passedbookrating.setText(book_rating);

        String book_shelf = intent.getStringExtra(BookDataListActivity.EXTRA_MSG5);
        passedbookshelf = (EditText) findViewById(R.id.passed_bookshelf);
        passedbookshelf.setText(book_shelf);

    


    public void updateBookInfo(View view)
        bookDBHelper = new BookDBHelper(getApplicationContext());
        sqLiteDatabaseBooks = bookDBHelper.getWritableDatabase();

        secret_editText_titel = Secret_editText_title.getText().toString();

        String booktitle, bookauthor, bookdate, bookrating, bookshelf;
        booktitle = passedbooktitle.getText().toString();
        bookauthor = passedbookauthor.getText().toString();
        bookdate = passedbookdate.getText().toString();
        bookrating = passedbookrating.getText().toString();
        bookshelf = passedbookshelf.getText().toString();
        int count = bookDBHelper.updateEditedBookInfo(secret_editText_titel,
                booktitle,bookauthor, bookdate, bookrating, bookshelf, sqLiteDatabaseBooks);
        Toast.makeText(getApplicationContext(), count+" book updated", Toast.LENGTH_LONG).show();
        finish();

    

    public void deleteBook(View view)
        bookDBHelper = new BookDBHelper(getApplicationContext());
        sqLiteDatabaseBooks = bookDBHelper.getWritableDatabase();
        bookDBHelper.deleteBookInformation(secret_editText_titel, sqLiteDatabaseBooks);
        Toast.makeText(getBaseContext(), "Book deleted", Toast.LENGTH_LONG).show();
    

对于我的 BookDBHelper:

public int updateEditedBookInfo(String old_title, String new_title, String new_author,
                                     String new_date, String new_rating,
                                     String new_shelf, SQLiteDatabase sqLiteDatabase)
        ContentValues contentValues = new ContentValues();
        contentValues.put(BookContent.NewBookInfo.BOOK_TITLE, new_title);
        contentValues.put(BookContent.NewBookInfo.BOOK_AUTHOR, new_author);
        contentValues.put(BookContent.NewBookInfo.BOOK_DATE, new_date);
        contentValues.put(BookContent.NewBookInfo.BOOK_RATING, new_rating);
        contentValues.put(BookContent.NewBookInfo.BOOK_SHELF, new_shelf);

        String selection = BookContent.NewBookInfo.BOOK_TITLE + " = ?";
        String [] selection_args = old_title;
        int count =  sqLiteDatabase.update(BookContent.NewBookInfo.TABLE_NAME_BOOKS, contentValues, selection, selection_args);
        return count;
    

    public void deleteBookInformation(String book_title,SQLiteDatabase sqLiteDatabase)
    String selection = BookContent.NewBookInfo.BOOK_TITLE+ "  =?";
    String [] selection_args = book_title;
    sqLiteDatabase.delete(BookContent.NewBookInfo.TABLE_NAME_BOOKS, selection, selection_args);

按要求编辑 activity_book_info.XML

<?xml version="1.0" encoding="utf-8"?>
    <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_
    android:layout_
    android:paddingBottom="@dimen/activity_vertical_margin"
    android:paddingLeft="@dimen/activity_horizontal_margin"
    android:paddingRight="@dimen/activity_horizontal_margin"
    android:paddingTop="@dimen/activity_vertical_margin"
    tools:context="com.kasutwentyseven.gui4selfshelf.Books.BookInfoActivity"
    android:background="@color/Background">

    <TextView
        android:layout_
        android:layout_
        android:text="@string/yourbookinfo"
        android:id="@+id/yourbookinfo"
        android:textSize="25dp"
        android:textColor="@color/Textcolor"
        android:gravity="center_horizontal"
        android:textStyle="bold"
        />

    <LinearLayout
        android:orientation="horizontal"
        android:layout_
        android:layout_
        android:layout_below="@+id/yourbookinfo"
        android:layout_alignParentStart="true"
        android:id="@+id/linearLayout5">

        <LinearLayout
            android:orientation="horizontal"
            android:layout_
            android:layout_>

            <ImageView
                android:layout_
                android:layout_
                android:id="@+id/passed_bookimage" />

            <LinearLayout
                android:orientation="vertical"
                android:layout_
                android:layout_>

                <EditText
                    android:layout_
                    android:layout_
                    android:id="@+id/passed_booktitle" />

                <EditText
                    android:layout_
                    android:layout_
                    android:id="@+id/passed_bookauthor" />

                <EditText
                    android:layout_
                    android:layout_
                    android:id="@+id/passed_bookdate" />

                <EditText
                    android:layout_
                    android:layout_
                    android:id="@+id/passed_bookrating" />

                <EditText
                    android:layout_
                    android:layout_
                    android:id="@+id/passed_bookshelf" />
            </LinearLayout>
        </LinearLayout>
    </LinearLayout>

    <LinearLayout
        android:orientation="horizontal"
        android:layout_
        android:layout_
        android:layout_below="@+id/linearLayout5"
        android:layout_alignParentStart="true"
        android:id="@+id/linearLayout6">

        <Button
            android:layout_
            android:layout_
            android:text="@string/btn_update"
            android:id="@+id/button_update"
            android:onClick="updateBookInfo"/>

        <Button
            android:layout_
            android:layout_
            android:text="@string/btn_delete"
            android:id="@+id/btn_delete_book"
            android:onClick="deleteBook"/>
    </LinearLayout>

    <LinearLayout
        android:orientation="horizontal"
        android:layout_
        android:layout_
        android:layout_below="@+id/linearLayout6">

        <EditText
            android:layout_
            android:layout_
            android:id="@+id/secret_edittext_title" />
    </LinearLayout>
</RelativeLayout>

【问题讨论】:

你能发布你的布局文件吗? 我想 Toasts 表明确实有更新/删除的数据库行。如果是这种情况,下一步将是在 ListView 中显示更改。数据库和 ListView 通常没有紧密链接,因为您需要使用 CursorLoader/SimpleCursorAdapter。因此,在对 db 进行更改后,您必须像开始时一样将数据加载到 ListVIew 中。 @0X0nosugar 好的。但是会发生什么而不是“旧”数据 你的意思是:bookDBHelper.addInformations(blob,title, author, date, rating, shelf, sqLiteDatabase1); Toast.makeText(getBaseContext(), "Data Saved", Toast.LENGTH_LONG).show(); bookDBHelper.close(); ListActivity 恢复时,您必须重新加载数据库中的数据。至少这是一种方法。不是最有效的,但它会起作用。如果没有列表活动代码,很难更具体。 【参考方案1】:

在@0x0nosugar 的帮助下(谢谢) 我找到了解决方案:

到更新书信息: 我补充说:

Intent intent = new Intent(getApplicationContext(), BookDataListActivity.class);
startActivity(intent);

对于删除:

    public void DeleteData()
    btn_delete_book.setOnClickListener(new View.OnClickListener() 
        @Override
        public void onClick(View v) 
            Integer deletedRows = bookDBHelper.deleteDate(passedbooktitle.getText().toString());
            if (deletedRows > 0) 
                Toast.makeText(getApplicationContext(), " Book deleted", Toast.LENGTH_LONG).show();
                Intent intent = new Intent(getApplicationContext(), BookDataListActivity.class);
                startActivity(intent);
                finish();
             else 
                Toast.makeText(getApplicationContext(), " Book not deleted", Toast.LENGTH_LONG).show();
            
        

    );

在 BookDBHelper:

    public Integer deleteDate (String book_title)
    SQLiteDatabase sqLiteDatabase = this.getWritableDatabase();
    String selection = BookContent.NewBookInfo.BOOK_TITLE+ " = ?";
    String[] selection_args = book_title;
    return sqLiteDatabase.delete(BookContent.NewBookInfo.TABLE_NAME_BOOKS,selection, selection_args);

列表活动中的方法:

    @Override
public void onResume()
    super.onResume();
    bookListDataAdapter.notifyDataSetChanged();

 

【讨论】:

你知道,你现在开始列表活动的方式,你可以调用“finish();”在开始详细信息活动后立即出现,并在(重新)启动列表活动后对详细信息活动执行相同操作。这样,您就不会冒用户按下“返回”并导航到旧版本的活动的风险。这可能永远不会发生,但我喜欢安全起见:) @0X0nosugar 我又要打扰你了。我的删除操作不起作用。我在 BookInfoactivity 中编辑并添加了 deleteBook 方法,在 BookDBHelper Activity 中添加了 deleteBookInformation。我删除了响应书,但在恢复 BookListActivity 后,书没有被删除。有什么建议吗? 好吧,您的 Toast 成功消息是“自我认证”;) 与“update()”一样,您可以检查“delete()”的返回值。如果它不等于 1,那么您知道查询有问题(例如行显然在数据库中,但您的查询“选择”与所需的行不匹配)顺便说一句,这可能是这里的错字,但请确保你写“=?”在查询中,而不是“=?” @0X0nosugar 你对我的“书已删除”是正确的;)我添加了一个计数,如@我的更新方法。所以不幸的是,我的书没有被删除。你有什么想法吗,我将如何让它发挥作用= 我今天找到了一个非常好的分步指南,关于“如何处理数据库问题”。也许this 会有所帮助。如果它看起来太复杂,我认为您需要记录(使用 android.util.Log)连接到数据库调用的所有内容。与 Toasts/实时调试相比的优势在于 Logcat 条目可以根据需要随时重新读取。

以上是关于更新和删除列表视图中的行的主要内容,如果未能解决你的问题,请参考以下文章

使用微调器从自定义列表视图中删除了错误的行

使用 WPF + MVVM 中的 Command + CommandParameter 删除列表视图中的行

使用Swift 3和CoreData删除表视图行

单击 CursorAdapter 中的按钮时如何在列表视图项目行中执行更新和删除操作

Bootstrap 表:是不是可以让两行表成为移动友好的两列表?

删除项目后如何更新列表视图?