본문 바로가기
반응형

Android23

Class, Object String form(Serializable)으로 save 하기 /** Read the object from Base64 string. */ public static Object S2Object( String s ) { byte [] data = Base64.decode(s, 0); ObjectInputStream ois; Object o=null; try { ois = new ObjectInputStream(new ByteArrayInputStream(data)); o = ois.readObject(); ois.close(); } catch (ClassNotFoundException e) { System.out.println("S2Object ClassNotFoundException failed"); return null; } catch (IOException e).. 2011. 6. 10.
EditText Attributes Type Attribute Description 입력방식 android:singleLine 한 줄로만 표현, 스크롤 및 개행 불가 android:digits 유효 글자 제한, ex)ab면 ab만 입력 가능 android:numeric "integer" : 숫자만 입력 "signed" : 부호 가능 "decimal" : 소수점 가능 android:phoneNumber 전화번호 입력 방식 android:password 비밀번호 입력 방식, * 로 표시됨 android:capitalize "characters" : 글자 모두 대문자 "words" : 단어의 첫 글자만 대문자 "sentences" : 문장의 첫 글자만 대문자 Focus android:selectAllOnFocus 선택 시 전체 선택됨 andro.. 2011. 6. 10.
ezKeys ezKeys 페이스북 페이지 1.6.51 임시로 업로드했습니다.불편을 드려 죄송합니다... ☆=====================================사용법=====================================☆ ☆숫자패드에 ⓘ를 누르시면 설정화면에 가실 수 있습니다. 특문은숫자패드에서SHIFT를누르면되고 쉼표,점과 획,쌍,ㅡ조합으로특문가능합니다. 획쌍 ㅡ-~ .!: ,?; 슬라이드 왼쪽:백스페이스 오른쪽:스페이스 아래쪽:키보드감추기 위쪽:텍스트모두잘라내기 (키보드 실행방법: 1. 설정-키보드 사용할키보드 체크 2. 입력할때 텍스트상자 길게 터치 3. 입력방법 선택 ezKeys) ☆=========================================================.. 2011. 6. 8.
ExpandableListView 자동으로 열어보여주기 ExpandableListView elv = (ExpandableListView)findViewById(R.id.elvMarks); MyexpandableListAdapter ad = new MyexpandableListAdapter(); elv.setAdapter(ad); for(int i=0;i 2011. 5. 26.