일반 텍스트 출력 (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(); |
반응형
'프로그래밍 > Android (Java)' 카테고리의 다른 글
xml 파일을 이용한 메뉴버튼 구현 (OptionsMenu) (0) | 2015.01.27 |
---|---|
edittext 속성 - 기본값 입력 및 쓰기 금지 설정 (0) | 2015.01.27 |
SQLite select 예제 (0) | 2015.01.27 |
SQLite 에 select 방법과 insert 및 update 방법 (0) | 2015.01.27 |
스마트폰 자신의 핸드폰 번호 가져오기 (0) | 2015.01.27 |
댓글()