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


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