[Android] Intent 값 전달
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); 그리..
언어/ANDROID
2016. 9. 1. 14:39
공지사항
최근에 올라온 글
최근에 달린 댓글
- Total
- Today
- Yesterday
TAG
- 하기
- Android
- 스프링
- 사용
- 라이브러리
- Create
- 안드로이드
- synchronized
- 음식
- 종류
- 클래스
- Default
- mybatis
- Controller
- mysql
- Server
- js
- spring
- jsp
- java
- jdbc
- nsis
- 연결
- Class
- Delete
- 어노테이션
- iNT
- 자바
- UTF-8
- 생성
일 | 월 | 화 | 수 | 목 | 금 | 토 |
---|---|---|---|---|---|---|
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 |
글 보관함