티스토리 뷰
[Android] Intent 활용 예제
안드로이드 Intent 활용 예제
-
- Intent intent = new Intent(Intent.ACTION_VIEW,
- Uri.parse("content://contacts/people" + String.valueOf(contact.getId())));
- startActivity(intent);
-
- Intent intent = new Intent(Intent.ACTION_INSERT,
- Uri.parse("content://contacts/people"));
- startActivity(intent);
-
- Intent intent = new Intent(Intent.ACTION_EDIT,
- Uri.parse("content://contacts/people" + String.valueOf(contact.getId())));
- startActivity(intent);
-
- Intent intent = new Intent(Intent.ACTION_DELETE,
- Uri.parse("content://contacts/people" + String.valueOf(contact.getId())));
- startActivity(intent);
-
- Intent intent = new Intent(Intent.ACTION_DIAL,
- Uri.parse("tel:" + TelNumber));
- startActivity(intent);
-
- Intent intent = new Intent(Intent.ACTION_CALL,
- Uri.parse("tel:" + TelNumber));
- startActivity(intent);
-
- Intent intent = new Intent(Intent.ACTION_VIEW)
- intent.putExtra("sms_body", "The SMS text");
- intent.setType("vnd.android-dir/mms-sms");
- startActivity(intent);
-
- Intent intent = new Intent(Intent.ACTION_SENDTO,
- Uri.parse("sms_body:" + "The SMS text"));
- intent.setType("vnd.android-dir/mms-sms");
- startActivity(intent);
-
- Intent intent = new Intent(Intent.ACTION_SENDTO,
- Uri.parse("mailto:" + "The 이메일 text"));
- startActivity(intent);
-
- Intent intent = new Intent(Intent.ACTION_WEB_SEARCH);
- intent.putExtra(SearchManager.QUERY, "검색어");
- startActivity(intent);
-
- Intent intent = new Intent(Intent.ACTION_SENDTO,
- Uri.parse("geo: 38.00, -35.03"));
- startActivity(intent);
-
- Intent intent = new Intent(Intent.ACTION_VIEW,
- Uri.parse("market://search?q=pname:전체패키지명"));
- startActivity(intent);
-
- Intent intent = new Intent(Intent.ACTION_WEB_SEARCH,
- Uri.parse("market://details?id=전체패키지명"));
- startActivity(intent);
-
- Intent intent = new Intent(Intent.ACTION_DELETE);
- intent.setData(Uri.parse("전체패키지명"));
- startActivity(intent);
« 2025/02 »
일 |
월 |
화 |
수 |
목 |
금 |
토 |
|
|
|
|
|
|
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 |
|