1

データを取得し、テキストビューで正常に表示しました。
リストビューのように見せるために、コードで何を変更する必要がありますか?
また、リストビューをプログラムで変更するにはどうすればよいですか(サイズとパディングを追加)?

これが私が表示したアイテムを選択する際の私のDBclassの一部です

    getFAData() {
      // TODO Auto-generated method stub
      String [] columns = new String[]{Row_Name};
      Cursor c = ourDB.query(db_Table, columns, null, null, null, null, null);
      String res = "";

      int iRow = c.getColumnIndex(Row_Name);
      //int iDesc = c.getColumnIndex(Row_Desc);
      //int iID = c.getColumnIndex(Row_id);

      for (c.moveToFirst(); !c.isAfterLast(); c.moveToNext())
      {
        res = res + c.getString(iRow) + "\n";
      }
      return res;
    }

そして、ここにクラスファイルがあります:

    public class FirstAid extends Activity {

    @Override
    protected void onCreate(Bundle savedInstanceState) {
        // TODO Auto-generated method stub
        super.onCreate(savedInstanceState);
        setContentView(R.layout.firstaid);
        displayresult();
    }

    public void displayresult (){
        TextView tvFa = (TextView) findViewById(R.id.tvFA);
        tvFa.setMovementMethod(new ScrollingMovementMethod());
        DbHelper tblFa = new DbHelper(this);
        tblFa.open();
        String result = tblFa.getFAData();
        tblFa.close();

        tvFa.setText(result);
    }
    }
4

2 に答える 2

0

データベースのデータ取得関数にArrayListを作成します

public ArrayList<String> getFAData() {
    ArrayList<String> comments = new ArrayList<String>();

    Cursor c = ourDB.query(db_Table, columns, null, null, null, null, null);
    int iRow = c.getColumnIndex(Row_Name);
    cursor.moveToFirst();
    while (!cursor.isAfterLast()) {          
        comments.add(c.getString(iRow ));
        cursor.moveToNext();
    }
    // Make sure to close the cursor
    cursor.close();
    return comments;
}

アクティビティでこのようなデータを取得します。

ArrayList<String> array = new ArrayList<String>();
array = tblFa.getFAData();
于 2012-10-01T09:46:06.283 に答える
0

このようなdbhelperクラスにメソッドを実装する必要があります

 public List<String> selectAll_data() {
      List<String> list = new ArrayList<String>();

      Cursor cursor = this.db.query(TABLE_NAME_2, new String[] { "str" },
              null , null, null, null, null);

      if (cursor.moveToFirst()) {
         do {
                list.add(cursor.getString(0));                  

           } while (cursor.moveToNext());
      }
      if (cursor != null && !cursor.isClosed()) {
         cursor.close();
      }

      return list;
   }

今あなたの活動で

 List<String> events = dh.selectAll_data(); 
 String[] arr = new String[events.size()];      
 arr = events.toArray(arr);

 ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,android.R.layout.simple_list_item_1, android.R.id.text1, values);

 // Assign adapter to ListView
listView.setAdapter(adapter); 

リアルタイムの例を見たい場合は、このURLを確認してください

于 2012-10-01T09:51:40.780 に答える