Intent로 다른 Activity(예, AnotherActivity.class)를 실행시킬 때는 다음과 같이 한다. Intent intent = new Intent(getApplicationContext(), AnotherActivity.class);startActivity(intent);그런데, 여기에 추가로 AnotherActivity 데이터를 전달하고 싶을 때가 있다.이때 사용할 수 있는 것이 putExtra() 다. Intent intent = new Intent(getApplicationContext(), AnotherActivity.class);intent.putExtra(“name”, “rio”);intent.putExtra(“age”, 10);startActivity(intent); 그리..
유효성 검사이메일public static boolean isEmail(String email) {if (email==null) return false;boolean b = Pattern.matches(“[\\w\\~\\-\\.]+@[\\w\\~\\-]+(\\.[\\w\\~\\-]+)+”,email.trim());return b;} 휴대폰public static boolean isValidCellPhoneNumber(String cellphoneNumber) {boolean returnValue = false;Log.i(“cell”, cellphoneNumber);String regex = “^\\s*(010|011|012|013|014|015|016|017|018|019)(-|\\)|\\s)*(\\d{3..
onCreate()는 Activity가 최초 생성할 때 호출됩니다. 초기화 설정을 하는 곳으로 보관된 상태의 Activity가 있으면, 그 상태를 저장중인 Bundle객체를 받아서 사용합니다. onCreate()가 호출된 후에는 onStart()가 호출되는데 이 때에는 강제종료가 불가능합니다. onRestart()는 Activity가 정지된 후(onStop() 후) 다시 시작하기 전에 호출됩니다. onRestart()가 호출된 후에는 onStart()가 호출되는데 이 때에는 강제종료가 불가능합니다. onStart()는 Activity가 사용자에게 보여지기 직전에 호출됩니다. Activity화면을 표시하는 매소드입니다. 이후, onResume()으로 이어집니다. 이 때에는 강제종료가 불가능합니다. onRe..
코드 Switch1234567891011121314151617181920212223242526272829303132333435363738394041424344454647484950515253 android:textOn=”On” 상태가 On일 경우에 표시되는 문자열이다. android:textOff=”Off” 상태가 Off일 경우에 표시되는 문자열이다. android:checked=”true” true일 경우 상태를 On으로 설정하며 false일 때는 Off로 설정한다. ———————————————- swSound = (Switch)findViewById(R.id.swSound); txtStatus = (TextView)findViewById(R.id.txtStatus); swSound.setOnCheck..
- Total
- Today
- Yesterday
- 연결
- Controller
- java
- 어노테이션
- Delete
- Class
- 음식
- synchronized
- 하기
- Server
- 사용
- UTF-8
- 스프링
- 자바
- spring
- js
- 생성
- jsp
- mybatis
- Create
- 종류
- Default
- 안드로이드
- 클래스
- jdbc
- 라이브러리
- iNT
- mysql
- Android
- nsis
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
1 | 2 | 3 | 4 | |||
5 | 6 | 7 | 8 | 9 | 10 | 11 |
12 | 13 | 14 | 15 | 16 | 17 | 18 |
19 | 20 | 21 | 22 | 23 | 24 | 25 |
26 | 27 | 28 | 29 | 30 | 31 |