Intent 사용법

android 2020. 2. 1. 13:28

* 기본

Intent intent = new Intent(getApplicationContext(), MenuActivity.class);
startActivity(intent);

* 요청코드 추가

Intent intent = new Intent(getApplicationContext(), MenuActivity.class);
startActivityForResult(intent, 101);

* 전화걸기

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("tel:010-1000-1000"));
startActivity(intent);

* 웹접속

Intent intent = new Intent(Intent.ACTION_VIEW, Uri.parse("https://m.naver.com"));
startActivity(intent);

'android' 카테고리의 다른 글

SharedPreferences 사용법  (0) 2020.02.01
Intent 값전달 및 받기  (0) 2020.02.01
프로그레스바  (0) 2020.02.01
다이얼로그 메시지  (0) 2020.02.01
스낵바 메시지  (0) 2020.02.01
블로그 이미지

디츠

“말은 쉽지, 코드를 보여줘.” “Talk is cheap. Show me the code.” – 리누스 토르발스(Linus Torvalds)

,