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


°øÀ¯ Intent [Android]
7³â Àü
Intent i = new Intent(Intent.ACTION_SEND);
i.setType("text/plain");
i.putExtra(Intent.EXTRA_SUBJECT, "Sharing URL");
i.putExtra(Intent.EXTRA_TEXT, "http://www.url.com");
startActivity(Intent.createChooser(i, "Share URL"));
If the app you want to share to is not installed on the user's device, for example - facebook, then you'll have to use Facebook SDK.

If you want your Activity to handle text data shared from other apps as well, you can add this to your AndroidManifest.xml:

<activity android:name=".ShareLink">
    <intent-filter>
        <action android:name="android.intent.action.SEND" />
        <category android:name="android.intent.category.DEFAULT" />
        <data android:mimeType="text/plain" />
    </intent-filter>
</activity>
ÃßõÃßõ : 242 Ãßõ ¸ñ·Ï
¹øÈ£ Á¦¸ñ
97
ffmpeg ¿ÀÇ ¼Ò½º on ¾Èµå·ÎÀ̵å
96
WebView¿¡¼­ <a> ű×ÀÇ "_blank" target ó¸®Çϱâ.
95
MediaPlayer 5¹ø¸¸ ¹Ýº¹Àç»ý
94
ÆÄÀÏ À§Ä¡¿¡ µû¸¥ ¹Ìµð¾î Àç»ý »ùÇÃÄÚµå
93
MJPEG on Android anyone?
92
Android °³¹ß
91
¾Èµå·ÎÀ̵å : ¾×ƼºñƼ ¶óÀÌÇÁ »çÀÌŬ (Activity Life Cycle)
90
¾Èµå·ÎÀ̵å ÇÁ·Î±×·¥ ÄÚµå·Î À¥ ºê¶ó¿ìÀú ½ÇÇàÇϱ⠿¹Á¦ (ÀÎÅÙÆ® »ç¿ë)
89
Áøµ¿ È¿°ú [Android]
88
Á¾·á ´ÙÀ̾ó·Î±× [Android]
87
´Ù¸¥¾Û È£Ãâ [Android]
86
TabActivity back key Event [Android]
85
³×Æ®¿öÅ© »óÅ [Android]
84
¾Èµå·ÎÀ̵忡¼­ À¥¼­¹ö¿¡ post·Î ±Û¾²±â [Android]
83
Webview ¼Ò½º [Android]
82
Coach mark View [Android]
81
¸ÖƼ ÇØ»óµµ [Android]
80
Webview source [Android]
°øÀ¯ Intent [Android]
78
intent uri ¸ðÀ½ [Android]
77
http post [Android]
76
http ¿äû [Android]
75
Android WebView Facebook Login (popup/redirection issues)
74
Loading GIF [Android]listView ¿ø°ÝÀ̹ÌÁö [Android]
73
¾Û ¹öÀü üũ ½ºÅä¾î·Î À̵¿ [Android]
72
WebViewClient [Android]
71
http post get Àü¼Û
70
À¥ºä ¸Þ¼Òµå È£ÃâÀÌ ¾ÈµÉ ¶§ (android.permission.INTERACT_ACROSS_USERS_FULL)
69
°³¹ß Áß ¿¡·¯ ¹ß»ý½Ã ¿¡·¯ ³»¿ë È®ÀÎ, ÇØ°á¹æ¹ý [Android]
68
ij½Ã Áö¿ì±â [Android]
¸ñ·Ï
¹ÂÁ÷Æ®·ÎÆ® ºÎ»ê±¤¿ª½Ã ºÎ»êÁø±¸ °¡¾ßµ¿ ¤Ó °³ÀÎÁ¤º¸Ãë±Þ¹æħ
Copyright ¨Ï musictrot All rights reserved.