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中显示的数据。

相关内容

热门资讯

透视操作!德普辅助器怎么用(W... 透视操作!德普辅助器怎么用(WePoKer辅助器)一贯真的有辅助app(哔哩哔哩)透视操作!德普辅助...
透视诀窍!we poker辅助... 透视诀窍!we poker辅助器下载(WePoKer正版)一贯真的是有辅助教程(哔哩哔哩)在进入we...
透视步骤!wepoker有没有... 透视步骤!wepoker有没有挂(WePoKer私人局)一直是有辅助攻略(哔哩哔哩)1、每一步都需要...
透视讲义!wepoker透视脚... 透视讲义!wepoker透视脚本是什么(WPK辅助)确实真的是有辅助神器(哔哩哔哩)1、wepoke...
透视经验!poker worl... 透视经验!poker world辅助器(WePoKer h5)真是存在有辅助app(哔哩哔哩)pok...
透视诀窍!德州局怎么透视(HH... 透视诀窍!德州局怎么透视(HHpoker脚本)切实是真的有辅助工具(哔哩哔哩)小薇(辅助器软件下载)...
透视操作!we-poker软件... 透视操作!we-poker软件(HHpoker有用)总是有辅助app(哔哩哔哩)1、透视操作!we-...
透视法门!sohoopoker... 透视法门!sohoopoker辅助(WePoKer运气)原来有辅助攻略(哔哩哔哩)1、下载好soho...
透视法子!大菠萝手游辅助(WP... 透视法子!大菠萝手游辅助(WPK透视)本来真的是有辅助方法(哔哩哔哩)1、许多玩家不知道大菠萝手游辅...
透视手册!德普之星透视免费(W... 透视手册!德普之星透视免费(WePoKer祈福)一贯真的是有辅助工具(哔哩哔哩)1、德普之星透视免费...