Android List View 无法从数据库动态填充
创始人
2024-08-14 16:30:17
0

要在Android List View中动态填充数据,你可以使用适配器(Adapter)来连接数据库和List View。下面是一个使用SimpleCursorAdapter和SQLite数据库来动态填充List View的示例代码:

  1. 创建一个SQLite数据库和表格:
public class DatabaseHelper extends SQLiteOpenHelper {
    private static final String DATABASE_NAME = "mydatabase.db";
    private static final int DATABASE_VERSION = 1;

    private static final String TABLE_NAME = "mytable";
    private static final String COLUMN_ID = "_id";
    private static final String COLUMN_NAME = "name";

    // 构造函数
    public DatabaseHelper(Context context) {
        super(context, DATABASE_NAME, null, DATABASE_VERSION);
    }

    @Override
    public void onCreate(SQLiteDatabase db) {
        String query = "CREATE TABLE " + TABLE_NAME + " (" +
                COLUMN_ID + " INTEGER PRIMARY KEY AUTOINCREMENT, " +
                COLUMN_NAME + " TEXT)";
        db.execSQL(query);
    }

    @Override
    public void onUpgrade(SQLiteDatabase db, int oldVersion, int newVersion) {
        db.execSQL("DROP TABLE IF EXISTS " + TABLE_NAME);
        onCreate(db);
    }

    public void insertData(String name) {
        SQLiteDatabase db = this.getWritableDatabase();
        ContentValues values = new ContentValues();
        values.put(COLUMN_NAME, name);
        db.insert(TABLE_NAME, null, values);
        db.close();
    }

    public Cursor getAllData() {
        SQLiteDatabase db = this.getReadableDatabase();
        Cursor cursor = db.rawQuery("SELECT * FROM " + TABLE_NAME, null);
        return cursor;
    }
}
  1. 在Activity或Fragment中使用SimpleCursorAdapter将数据填充到List View:
public class MainActivity extends AppCompatActivity {
    private ListView listView;
    private DatabaseHelper databaseHelper;
    private SimpleCursorAdapter cursorAdapter;

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        listView = findViewById(R.id.listView);
        databaseHelper = new DatabaseHelper(this);

        // 获取数据库中的所有数据
        Cursor cursor = databaseHelper.getAllData();

        // 定义要显示的列名
        String[] columns = new String[] {DatabaseHelper.COLUMN_NAME};

        // 定义要显示的控件id
        int[] to = new int[] {R.id.textViewName};

        // 创建适配器
        cursorAdapter = new SimpleCursorAdapter(this, R.layout.list_item, cursor, columns, to, 0);

        // 将适配器设置到List View
        listView.setAdapter(cursorAdapter);
    }

    // 在某个事件触发时添加数据到数据库并更新List View
    public void addButtonClicked(View view) {
        EditText editTextName = findViewById(R.id.editTextName);
        String name = editTextName.getText().toString();
        databaseHelper.insertData(name);

        // 更新List View
        Cursor newCursor = databaseHelper.getAllData();
        cursorAdapter.swapCursor(newCursor);

        editTextName.setText("");
    }
}
  1. 在布局文件中定义ListView和添加按钮:


    

    

这样,当点击添加按钮时,会将EditText中的文本插入到数据库,并更新List View中显示的数据。

相关内容

热门资讯

安装ug未能链接到许可证服务器 安装UG未能链接到许可证服务器是UG用户在安装软件时常遇到的问题之一。该问题的解决方法需要技术向的知...
不能访问光猫的的管理页面 光猫是现代家庭宽带网络的重要组成部分,它可以提供高速稳定的网络连接。但是,有时候我们会遇到不能访问光...
按转换模式过滤日志【%t】。 要按照转换模式过滤日志,可以使用正则表达式来实现。下面是一个示例代码,使用Java语言的Patter...
安装某些NPM包时,'... 在NPM中,'@'符号是用来分隔软件包名称和其特定版本或范围参数的。例如,您可以使用以下命令安装 R...
Android TV 盒子出现... Android TV 盒子上的应用程序停止运行可能是由于多种原因引起的,以下是一些可能的解决方法和相...
安装Pillow时遇到了问题:... 遇到这个问题,可能是因为缺少libwebpmux3软件包。解决方法是手动安装libwebpmux3软...
安卓 - 谷歌地图卡住了 问题描述:在安卓设备上使用谷歌地图应用时,地图卡住了,无法进行任何操作。解决方法一:清除应用缓存和数...
Apple Watch上的缩放... 若Apple Watch上的缩放度量无法正常工作,可能是由于以下原因导致的:1. 应用程序代码错误;...
安装未成功。应用程序无法安装。... 在Android开发中,当应用程序无法安装并显示错误消息“安装未成功。应用程序无法安装。安装失败原因...
Artifactory在网页上... 要在Artifactory的网页上列出工件,您可以使用Artifactory的REST API来获取...