|
|
| |
Android À¥ ºê¶ó¿ìÀú ¸µÅ©·Î ¾Û ½ÇÇà ¹æ¹ý |
|
|
|
8³â Àü |
¾Èµå·ÎÀ̵å ÀÚü ºê¶ó¿ìÀú·Î ƯÁ¤ ¾ÛÀ» ½ÇÇà ÇÏ´Â °ÍÀÌ °¡´ÉÇÏ´Ù.
ÀÌ°ÍÀº ¾Èµå·ÎÀ̵å OS°¡ °¡Áø intentÀÇ Æ¯Â¡À¸·Î °¡´É ÇÑ°Í °°´Ù.
Intent ÀÇ ÀÚ¼¼ÇÑ ³»¿ëÀº ¾Èµå·ÎÀ̵å API Guide¿¡ ÀÖ´Â Intents and Intent Filters ¸¦ º¸¸é ¾Ë¼ö ÀÖ´Ù.
1. ¸ÕÀú ½ÇÇà ÇÏ°íÀÚ ÇÏ´Â ¾ÛÀÇ AndroidManifest.xml ÆÄÀÏ¿¡¼ ½ÇÇàÇÏ°íÀÚ ÇÏ´Â Activity¾Æ·¡¿¡ Intent-filter¸¦ ¼±¾ðÇØÁØ´Ù.
<activity android:name="SearchActionActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="callMyApp" android:host="search"/>
</intent-filter>
</activity>
2. À¥ ºê¶ó¿ìÀú »ó¿¡¼ ¸µÅ© ¼³Á¤ ¹æ¹ý
- À¥¿¡¼ ƯÁ¤ URLÇüÅ·Π¼³Á¤À» ÇØÁà¾ß ÇØ´ç ¾ÛÀÌ È£ÃâµÇ¾î ½ÇÇà µÇ¾î Áø´Ù.
<a href="callMyApp://search"> ³ªÀÇ ¾Û °Ë»ö ½ÇÇà </a>
À§¿Í°°ÀÌ À¥ÆäÀÌÁö¿¡¼ ¸µÅ©¸¦ ¼³Á¤ÇØ µÎ¸é ÇØ´ç ¾ÛÀÌ ¼³Ä¡µÇ¾î ÀÖÀ¸¸é ÇØ´ç SearchActionActivity°¡ ¹Ù·Î ½ÇÇà µÇ¾îÁö´Â °É ¾Ë¼ö ÀÖ´Ù.
µû¶ó¼, ´Ù¸¥ ¾×¼ÇÀÇ Activity¸¦ ½ÇÇàÇÏ°í ½Í´Ù¸é ´Ù¸¥ Activity¿¡ intent-filter¸¸ Ãß°¡ÇØÁÖ¸é °¡´ÉÇÏ´Ù.
<activity android:name="TakePhotoActionActivity">
<intent-filter>
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="callMyApp" android:host="takePhoto"/>
</intent-filter>
</activity>
À¥¿¡¼ È£Ãâ ¹æ¹ýÀº
<a href="callMyApp://takePhoto"> ³ªÀÇ ¾Û »çÁø Âï±â ½ÇÇà </a>
3. ÇÊ¿ä¿¡ µû¶ó¼ ¾ÛÀÌ ¼³Ä¡ µÇ¾î ÀÖÀ¸¸é ½ÇÇàÇÏ°í ¼³Ä¡ µÇ¾î ÀÖÁö ¾ÊÀ¸¸é ±¸±Û Ç÷¹ÀÌ ¸¶ÄÏÀ¸·Î À̵¿ ÇÏ°í ½Í´Ù°í ÇÑ´Ù¸é intent Àü´Þ ¹æ½ÄÀ¸·Î È£Ãâ ÇÏ¸é µÈ´Ù.(Android Only)
±âº» Çü½ÄÀº ¾Æ·¡¿Í °°´Ù.
Intent://[host¸í]?ÆĶó¹ÌÅÍ=Æĸ®¹ÌÅÍ°ª
#Intent;scheme=callMyApp;action=android.intent.action.VIEW;category=android.intent.category.BROWSABLE;package=com.test.myapp;end
°£´ÜÇÑ È£Ãâ ¿¹
<a href="Intent://takePhoto#Intent;scheme=callMyApp;package=com.test.myapp;end">
³ªÀÇ ¾Û »çÁø Âï±â ½ÇÇà </a>
3. ¾Û¿¡¼ ÆĶó¸ÞÅÍ °ª ¹Þ¾Æ¼ ó¸® Çϱâ
- ¾Û¿¡¼ È£ÃâµÇ¾îÁø Activity ¿¡¼ Intent¸¦ ÅëÇؼ µé¾î¿Â µ¥ÀÌÅÍ¿¡¼ ÆĶó¸ÞÅÍ °ªÀ» ¹Þ¾Æ¼ ó¸® ÇÒ¼öµµ ÀÖ´Ù.
Uri uriData = getIntent().getData();
String photoNumber = uriData.getQueryParameter("photoNumber ");
À¥¿¡¼ È£Ãâ
<a href="callMyApp://takePhoto?photoNumber=1"> ³ªÀÇ ¾Û 1¹ø »çÁø º¸±â </a>
ÀÌ»óÀ¸·Î À¥¿¡¼ ¸µÅ©·Î ¾Èµå·ÎÀÌµå ¾ÛÀÇ È£ÃâÀ» ¾Ë¾Æº¸¾Ò½À´Ï´Ù.
ÀÌ°ÍÀÌ µÇ´Â °ÍÀº Android OS»ó¿¡¼ ±âº»ÀûÀ¸·Î Intent È£Ãâ ¹æ½ÄÀ» Áö¿øÇϱ⠶§¹®¿¡ °¡´ÉÇÏÁö ¾Ê³ª »ý°¢µË´Ï´Ù.
Âü°í »çÀÌÆ®
http://developer.android.com/guide/components/intents-filters.html
http://developer.naver.com/wiki/pages/UrlScheme |
|
̵̧ : 310 |
̵̧
¸ñ·Ï
|
|
| |
|