문자코드변환 String 클래스의 생성자에 encoding type을 지정하면 됨 String converted = new String(text); 이딴식으로 넣으면 당연히 글자가 깨지고 String converted = new String(text, "euc-kr"); 이렇게 해줘야 ksc5601코드가 utf-8로 잘 변환되고 출력이 된다. 반대의 경우에는 String converted = new String(text, "utf-8"); 과 같이 하면 text 어레이에 있는 내용을 utf-8로 간주하고 변환시켜줌 더보기 커스텀 리스트뷰 다이얼로그에 컨텍스트메뉴리스너 달기.. public class AndroidTest extends Activity { protected static final int ENTRY_ADD = Menu.FIRST; protected static final int ENTRY_REMOVE = Menu.FIRST + 1; @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setTheme(android.R.style.Theme_Dialog); ListView lv = new ListView(this); ArrayAdapter adapter = ArrayAdapter.createFromResource( this, R.array.test,.. 더보기 이전 1 ··· 3 4 5 6 7 8 9 ··· 40 다음