2017-03-09 202 views
-2

現在已經從數據庫中我需要的數據的L'米光標現在我想在一個列表視圖。何來顯示它是一個簡單的方法來做到這一點?爲什麼它發生在我身上填充列表視圖

回答

0

使用SimpleCursorAdapter

String[] from = {"column"}; 
int[] to = new int[] {android.R.id.text1}; 
SimpleCursorAdapter adapter = new SimpleCursorAdapter(context, 
      android.R.layout.simple_list_item_1, 
      cursor, 
      from, 
      to, 
      0); 
listView.setAdapter(adapter); 
1

使用光標只存儲數據到列表中,並通過該列表適配器。對於將數據放入列表,請參閱下面的代碼:

List<String> myList = new ArrayList<String>(); 
if (cursor.moveToFirst()) { 
     do { 
      myList.add(cursor.getString(0)); 

     }while (cursor.moveToNext()); 
    }