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

[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]
ÃßõÃßõ : 356 Ãßõ ¸ñ·Ï
¹øÈ£ Á¦¸ñ
2,885
input ÀÔ·Â ÇÊµå ¾ÕµÚ °ø¹é ½Ç½Ã°£ Á¦°Å
2,884
Placeholder Æ÷Ä¿½º½Ã °¨Ãß±â
2,883
MySQL Áߺ¹µÈ µ¥ÀÌÅ͸¦ »èÁ¦
2,882
MySQL Áߺ¹ µ¥ÀÌÅÍ È®ÀÎ
2,881
sessionStorage.getItem ¿Í sessionStorage.setItem
2,880
Á¦ÀÌÄõ¸® ·£´ýÀ¸·Î ¹è°æ»ö º¯°æ
2,879
preg match¿¡ °üÇÑ Á¤±Ô½Ä
2,878
Stream an audio file with MediaPlayer ¿Àµð¿À ÆÄÀÏ ½ºÆ®¸®¹Ö Çϱâ
2,877
Audio Streaming PHP Code
2,876
PHP $ SERVER ȯ°æ º¯¼ö Á¤¸®
2,875
Vimeo (ºñ¸Þ¿À) API ¸¦ »ç¿ëÇÏ¿© Ç÷¹À̾î ÄÁÆ®·ÑÇϱâ
2,874
iframe »ç¿ë½Ã ÇÏ´Ü¿¡ ¹ß»ýÇÏ´Â °ø¹é Á¦°Å¹æ¹ý
2,873
¾ÆÀÌÇÁ·¹ÀÓ(iframe) Àüüȭ¸é °¡´ÉÇÏ°Ô Çϱâ
2,872
ºÎÆ®½ºÆ®·¦(bootstrapk)¿¡¼­ »ç¿ëÇÏ´Â class¸í Á¤¸®
2,871
ºÎÆ®½ºÆ®·¦ CSS
2,870
Å©·Ò¿¡¼­ ¸¶Áø Á¶Àý
2,869
PHP ÇöÀç ÆäÀÌÁöÀÇ µµ¸ÞÀθíÀ̳ª urlµîÀÇ Á¤º¸ ¾Ë¾Æ¿À±â
2,868
PHP preg match all()
2,867
PHP ·Î À¥ÆäÀÌÁö ±Ü¾î¿À±â ¸ðµç ¹æ¹ý ÃÑÁ¤¸®!
2,866
[PHP] ¿ø°ÝÁö ÆÄÀÏ ÁÖ¼Ò ³ëÃâ ¾ÈÇÏ°í curl·Î ´Ù¿î·Îµå ¹Þ±â
2,865
PHP ÇÔ¼ö Á¤¸®
2,864
¾ÆÀÌÇÁ·¹ÀÓ(iframe) ºñÀ² À¯ÁöÇϸ鼭 Å©±â Á¶ÀýÇÏ´Â ¹æ¹ý
2,863
PHP ¹è¿­¿¡¼­ ¹«ÀÛÀ§·Î Çϳª »Ì¾ÆÁÖ´Â array rand() ÇÔ¼ö
2,862
PHP Á¤±Ô½Ä Á¤¸®
2,861
PHP Á¤±Ô½ÄÀ» È°¿ëÇÑ ÅÂ±× ¹× ƯÁ¤ ¹®ÀÚ¿­ Á¦°Å ¹× ÃßÃâ ¹æ¹ý
2,860
php Å©·Ñ¸µ ¶Ç´Â ÆÄ½Ì ÇÔ¼ö, Á¤±Ô½Ä ¸ðÀ½
2,859
Á¦ÀÌÄõ¸® ±âº» ¸í·É¾î
2,858
À¥ÆäÀÌÁö °¡·Î ¸ðµå¼¼·Î ¸ðµå ÀνÄÇϱâ
2,857
¸ð¹ÙÀÏ À¥ È­¸é °­Á¦ ȸÀü(°¡·Î¸ðµå °íÁ¤)
2,856
[HTML5]¿¡¼­ frameset ´ëü ¹æ¹ý°ú iframe ¼Ó¼º
¸ñ·Ï
¹ÂÁ÷Æ®·ÎÆ® ºÎ»ê±¤¿ª½Ã ºÎ»êÁø±¸ °¡¾ßµ¿ ¤Ó °³ÀÎÁ¤º¸Ãë±Þ¹æħ
Copyright ¨Ï musictrot All rights reserved.