จากเอกสารอย่างเป็นทางการ:
หากต้องการให้ Google รวบรวมข้อมูลเนื้อหาแอปของคุณและอนุญาตให้ผู้ใช้ป้อนแอปของคุณจากผลการค้นหาคุณต้องเพิ่มตัวกรองความตั้งใจสำหรับกิจกรรมที่เกี่ยวข้องในรายการแอปของคุณ ตัวกรองเจตนาเหล่านี้ช่วยให้สามารถเชื่อมโยงไปยังเนื้อหาในกิจกรรมใด ๆ ของคุณได้อย่างลึกซึ้ง ตัวอย่างเช่นผู้ใช้อาจคลิกที่ลิงก์ลึกเพื่อดูหน้าภายในแอปสำหรับช็อปปิ้งที่อธิบายถึงการนำเสนอผลิตภัณฑ์ที่ผู้ใช้กำลังค้นหา
การใช้ลิงก์นี้การเปิดใช้งานลิงก์ลึกสำหรับเนื้อหาแอปคุณจะเห็นวิธีใช้งาน
และการใช้งานการทดสอบการจัดทำดัชนีแอพของคุณวิธีทดสอบ
ตัวอย่าง XML ต่อไปนี้แสดงวิธีที่คุณอาจระบุตัวกรองเจตนาในรายการของคุณสำหรับการเชื่อมโยงลึก
<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" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- Accepts URIs that begin with "http://www.example.com/gizmos” -->
<data android:scheme="http"
android:host="www.example.com"
android:pathPrefix="/gizmos" />
<!-- note that the leading "/" is required for pathPrefix-->
<!-- Accepts URIs that begin with "example://gizmos” -->
<data android:scheme="example"
android:host="gizmos" />
</intent-filter>
</activity>
เพื่อทดสอบผ่าน Android Debug Bridge
$ adb shell am start
-W -a android.intent.action.VIEW
-d <URI> <PACKAGE>
$ adb shell am start
-W -a android.intent.action.VIEW
-d "example://gizmos" com.example.android