일반 텍스트 출력 (textview)

프로그래밍/Android (Java)|2015. 1. 27. 10:54
반응형

간단하게 하면 아래와 같습니다.

코드 작성 후에 필요한 layout 에서 sysdocu값 (내용: hahaha)을 가져다 쓰면 됩니다.


String IT = "hahaha";

TextView testView = (TextView)findViewById(R.id.sysdocu);

testView.setText(IT.toString());



SQLite 의 내용을 가져와 출력 하려면 아래와 같이 하면 됩니다.

String sql;

sql = "select * from message";

Cursor cursor;

cursor = db.rawQuery(sql, null);


StringBuffer sb = new StringBuffer();

if (cursor.moveToFirst()) {

do {

sb.append(cursor.getInt(0));

sb.append(" ");

sb.append(cursor.getString(1));

sb.append(" ");

sb.append(cursor.getString(2));

sb.append("\n");

} while (cursor.moveToNext());

}


TextView sysdocu = (TextView)findViewById(R.id.history);

sysdocu.setText(sb.toString());


cursor.close();

db.close(); 



반응형

댓글()