ȸ¿ø°¡ÀԡžÆÀ̵ð/ºñ¹øÃ£±â
ȨÀ¸·Î


[Android] Intent Ȱ¿ë ¿¹½Ã
9³â Àü
// À¥ÆäÀÌÁö ¶ç¿ì±â
Uri uri = Uri.parse(¡°http://www.google.com¡°);
Intent it = new Intent(Intent.ACTION_VIEW,uri);
startActivity(it);

// ±¸±Û¸Ê ¶ç¿ì±â
Uri uri = Uri.parse(¡°geo:38.899533,-77.036476¡È);
Intent it = new Intent(Intent.Action_VIEW,uri);
startActivity(it);

// ±¸±Û ±æÃ£±â ¶ç¿ì±â
Uri uri = Uri.parse(¡°http://maps.google.com/maps?f=d&saddr=Ãâ¹ßÁöÁÖ¼Ò&daddr=µµÂøÁöÁÖ¼Ò&hl=ko¡°);
Intent it = new Intent(Intent.ACTION_VIEW,URI);
startActivity(it);

// ÀüÈ­ °É±â
Uri uri = Uri.parse(¡°tel:xxxxxx¡±);
Intent it = new Intent(Intent.ACTION_DIAL, uri);
startActivity(it);

Uri uri = Uri.parse(¡°tel.xxxxxx¡±);
Intent it = new Intent(Intent.ACTION_CALL,uri);
// ÆÛ¹Ì¼ÇÀ» ÀØÁö ¸¶¼¼¿ä. <uses-permission id=¡±android.permission.CALL_PHONE¡± />

// SMS/MMS ¹ß¼Û
Intent it = new Intent(Intent.ACTION_VIEW);
it.putExtra(¡°sms_body¡±, ¡°The SMS text¡±);
it.setType(¡°vnd.android-dir/mms-sms¡±);
startActivity(it);

// SMS ¹ß¼Û
Uri uri = Uri.parse(¡°smsto:0800000123¡È);
Intent it = new Intent(Intent.ACTION_SENDTO, uri);
it.putExtra(¡°sms_body¡±, ¡°The SMS text¡±);
startActivity(it);

// MMS ¹ß¼Û
Uri uri = Uri.parse(¡°content://media/external/images/media/23¡È);
Intent it = new Intent(Intent.ACTION_SEND);
it.putExtra(¡°sms_body¡±, ¡°some text¡±);
it.putExtra(Intent.EXTRA_STREAM, uri);
it.setType(¡°image/png¡±);
startActivity(it);

// À̸ÞÀÏ ¹ß¼Û
Uri uri = Uri.parse(¡°mailto:xxx@abc.com¡°);
Intent it = new Intent(Intent.ACTION_SENDTO, uri);
startActivity(it);

Intent it = new Intent(Intent.ACTION_SEND);
it.putExtra(Intent.EXTRA_EMAIL, ¡°me@abc.com¡°);
it.putExtra(Intent.EXTRA_TEXT, ¡°The email body text¡±);
it.setType(¡°text/plain¡±);
startActivity(Intent.createChooser(it, ¡°Choose Email Client¡±));

Intent it = new Intent(Intent.ACTION_SEND);
String[] tos = {¡°me@abc.com¡°};
String[] ccs = {¡°you@abc.com¡°};
it.putExtra(Intent.EXTRA_EMAIL, tos);
it.putExtra(Intent.EXTRA_CC, ccs);
it.putExtra(Intent.EXTRA_TEXT, ¡°The email body text¡±);
it.putExtra(Intent.EXTRA_SUBJECT, ¡°The email subject text¡±);
it.setType(¡°message/rfc822¡È);
startActivity(Intent.createChooser(it, ¡°Choose Email Client¡±));

// extra Ãß°¡Çϱâ
Intent it = new Intent(Intent.ACTION_SEND);
it.putExtra(Intent.EXTRA_SUBJECT, ¡°The email subject text¡±);
it.putExtra(Intent.EXTRA_STREAM, ¡°file:///sdcard/mysong.mp3¡°);
sendIntent.setType(¡°audio/mp3¡È);
startActivity(Intent.createChooser(it, ¡°Choose Email Client¡±));

// ¹Ìµð¾îÆÄÀÏ Ç÷¹ÀÌ Çϱâ
Intent it = new Intent(Intent.ACTION_VIEW);
Uri uri = Uri.parse(¡°file:///sdcard/song.mp3¡°);
it.setDataAndType(uri, ¡°audio/mp3¡È);
startActivity(it);

Uri uri = Uri.withAppendedPath(
MediaStore.Audio.Media.INTERNAL_CONTENT_URI, ¡°1¡±);
Intent it = new Intent(Intent.ACTION_VIEW, uri);
startActivity(it);

// ¼³Ä¡ ¾îÇà Á¦°Å
Uri uri = Uri.fromParts(¡°package¡±, strPackageName, null);
Intent it = new Intent(Intent.ACTION_DELETE, uri);
startActivity(it);

// APKÆÄÀÏÀ» ÅëÇØ Á¦°ÅÇϱâ
Uri uninstallUri = Uri.fromParts(¡°package¡±, ¡°xxx¡±, null);
returnIt = new Intent(Intent.ACTION_DELETE, uninstallUri);

// APKÆÄÀÏ ¼³Ä¡
Uri installUri = Uri.fromParts(¡°package¡±, ¡°xxx¡±, null);
returnIt = new Intent(Intent.ACTION_PACKAGE_ADDED, installUri);

// À½¾Ç ÆÄÀÏ Àç»ý
Uri playUri = Uri.parse(¡°file:///sdcard/download/everything.mp3¡°);
returnIt = new Intent(Intent.ACTION_VIEW, playUri);

// ÷ºÎÆÄÀÏÀ» Ãß°¡ÇÏ¿© ¸ÞÀÏ º¸³»±â
Intent it = new Intent(Intent.ACTION_SEND);
it.putExtra(Intent.EXTRA_SUBJECT, ¡°The email subject text¡±);
it.putExtra(Intent.EXTRA_STREAM, ¡°file:///sdcard/eoe.mp3¡°);
sendIntent.setType(¡°audio/mp3¡È);
startActivity(Intent.createChooser(it, ¡°Choose Email Client¡±));

// ¸¶ÄÏ¿¡¼­ ¾îÇø®ÄÉÀÌ¼Ç °Ë»ö
Uri uri = Uri.parse(¡°market://search?q=pname:pkg_name¡±);
Intent it = new Intent(Intent.ACTION_VIEW, uri);
startActivity(it);
// ÆÐŰÁö¸íÀº ¾îÇø®ÄÉÀ̼ÇÀÇ Àüü ÆÐŰÁö¸íÀ» ÀÔ·ÂÇØ¾ß ÇÕ´Ï´Ù.

// ¸¶ÄÏ ¾îÇø®ÄÉÀÌ¼Ç »ó¼¼ È­¸é
Uri uri = Uri.parse(¡°market://details?id=¾îÇø®ÄÉÀ̼ǾÆÀ̵ð¡±);
Intent it = new Intent(Intent.ACTION_VIEW, uri);
startActivity(it);
// ¾ÆÀ̵ðÀÇ °æ¿ì ¸¶ÄÏ ÆÛºí¸®½Ì»çÀÌÆ®ÀÇ ¾îÇÃÀ» ¼±ÅÃÈÄ¿¡ URLÀ» È®ÀÎÇØº¸¸é ¾Ë ¼ö ÀÖ½À´Ï´Ù.

// ±¸±Û °Ë»ö
Intent intent = new Intent();
intent.setAction(Intent.ACTION_WEB_SEARCH);
intent.putExtra(SearchManager.QUERY,¡±searchString¡±)
startActivity(intent);[/code]
ÃßõÃßõ : 472 Ãßõ ¸ñ·Ï
¹øÈ£ Á¦¸ñ
369
jQuery.getScript, JavaScript ÆÄÀÏÀ» ·ÎµåÇÏ°í ½ÇÇà
368
load(), Ajax·Î ¹ÞÀº HTMLÀ» ÀÏÄ¡ÇÏ´Â ¿ä¼Ò ¾È¿¡ Ãß°¡
367
jQuery.param(), Ajax µ¥ÀÌÅÍ¿ë ¹è¿­À̳ª °´Ã¼¸¦ Á÷·ÄÈ­
366
jQuery.get() HTTP GET ¹æ½Ä Ajax ¿äû
365
jQuery.post(), Ajax HTTP POST ¹æ½Ä ¿äû
364
jQuery.getJSON, JSON µ¥ÀÌÅ͸¦ ·Îµå
363
jQuery length¿Í slideToggle ¿¹Á¦
362
[CSS] before¿Í after ¼±ÅÃÀÚ¸¦ ÀÌ¿ëÇÏ¿© Float ¼Ó¼º ÇØÁ¦
361
jQuery toggleClass() Methods
360
jQuery stop(),Callback,Chaining
359
jQuery Effects - Animation
358
jQuery Effects - Sliding
357
jQuery fadeIn(), fadeOut(), fadeToggle(), fadeTo()
356
jQuery hide(), show(), toggle()
355
jquery trigger(), ÇÔ¼ö ½ÇÇà½Ã۱â
354
Æú´õ¾ÈÀÇ ÆÄÀÏ °¡Áö°í ³î±â
353
ÆÄÀ̽㿡¼­ À¯´ÏÄÚµå ½ºÆ®¸² ´Ù·ç±â
352
Python 2.x ÇÑ±Û ÀÎÄÚµù °ü·Ã Á¤¸®
351
htmlspecialchars, entity decode
350
Php : Finding Chrome and Safari Browsers
349
[Shoutcast] jPlayer and Shoutcast Configuration
348
[Shoutcast] ÇöÀç Ç÷¹À̵Ǵ °î¸í ½ºÅ©¸³Æ® PHP
347
[Shoutcast] ½ºÆ®¸®¹Ö ³ë·¡Á¦¸ñÀ» º¯°æ ½ºÅ©¸³Æ®
346
Shoutcast PHP Scripts
345
FTP¿¡¼­ »èÁ¦ ¾ÈµÇ´Â ÆÄÀÏÀ̳ª Æú´õ »èÁ¦Çϱâ
344
DAUM ¿ìÆí¹øÈ£ ¼­ºñ½º Ȱ¿ëÇϱâ
343
jquery checkbox Àüü ¼±ÅÃ, Àüü ÇØÁ¦, üũ °ª ÃßÃâ
342
Setting .htaccess to allow PHP to be accessed with .xml extension
341
jQuery API: Manipulation, Events, Effects, Internals, Utilities
[Android] Intent Ȱ¿ë ¿¹½Ã
¸ñ·Ï
¹ÂÁ÷Æ®·ÎÆ® ºÎ»ê±¤¿ª½Ã ºÎ»êÁø±¸ °¡¾ßµ¿ ¤Ó °³ÀÎÁ¤º¸Ãë±Þ¹æÄ§
Copyright ¨Ï musictrot All rights reserved.