모바일로 국한된 의미로 설명
사용자가 Google 검색결과에서 앱으로 들어올수 있는 방법을 구현하는것
<activity android:name="com.example.android.GizmosActivity"
android:label="@string/title_gizmos" >
<intent-filter android:label="@string/filter_title_viewgizmos">
<action android:name="android.intent.action.VIEW" />
<!-- Accepts URIs that begin with "http://example.com/gizmos” -->
<data android:scheme="http"
android:host="example.com"
android:pathPrefix="/gizmos" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
</activity>
참고
https://developers.google.com/app-indexing/webmasters/app?hl=ko
'Development > Android' 카테고리의 다른 글
순차번호 리소스 아이디 가져오기 (0) | 2015.06.08 |
---|---|
INSTALL_FAILED_DUPLICATE_PERMISSION (0) | 2015.05.06 |
WebView target=_blank, window.open(), window.close() 처리하기 (0) | 2015.04.16 |
EditText InputType 정의 (0) | 2015.04.11 |
Material Design AppCompat Library (0) | 2015.04.10 |