2012-03-25 71 views
0

我有一個微調器當前正在填充來自數據庫的一列(名稱)。我想改變這一點,讓每個微調器行顯示同一個表中的名稱,空格和ID。這是我目前使用的代碼,我不知道如何將「from」數組中的多行映射到「to」數組中的相同textview。用數據庫中的兩個值填充每個微調器行

Cursor c = db.fetchAllUsers(); 
    startManagingCursor(c); 

    // create an array to specify which fields we want to display 
    String[] from = new String[]{"name"}; 
    // create an array of the display item we want to bind our data to 
    int[] to = new int[]{android.R.id.text1}; 
    // create simple cursor adapter 
    SimpleCursorAdapter adapter = 
     new SimpleCursorAdapter(this, android.R.layout.simple_spinner_item, c, from, to); 
    adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item); 
    // get reference to our spinner 
    spinner.setAdapter(adapter); 

謝謝!

回答

相關問題