不止热门角色,我们为你扩展了更多细分角色分类,覆盖职场提升、商业增长、内容创作、学习规划等多元场景。精准匹配不同目标,让每一次生成都更有方向、更高命中率。
立即探索更多角色分类,找到属于你的增长加速器。
<!-- 1) HTTPS Android App Links(含域名校验) -->
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- https://shop.example.com/product/<id> -->
<data
android:scheme="https"
android:host="shop.example.com"
android:pathPrefix="/product/" />
<!-- https://shop.example.com/p/<id> -->
<data
android:scheme="https"
android:host="shop.example.com"
android:pathPrefix="/p/" />
</intent-filter>
<!-- 2) 自定义 Scheme 深度链接:demoapp://product/<id> -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
<!-- demoapp://product/<id>
其中 host=product,路径至少包含一个 segment(<id>) -->
<data
android:scheme="demoapp"
android:host="product"
android:pathPattern="/.*" />
</intent-filter>
功能描述:
元素解析:
使用方式(集成到 AndroidManifest.xml):
注意事项:
匹配优先级说明:
系统版本兼容性:
安全配置建议:
<!-- Handle single share: image or plain text -->
<intent-filter>
<action android:name="android.intent.action.SEND" />
<category android:name="android.intent.category.DEFAULT" />
<!-- Accept plain text shares -->
<data android:mimeType="text/plain" />
<!-- Accept single image shares from MediaStore/FileProvider -->
<data android:mimeType="image/*" />
</intent-filter>
<!-- Handle multiple images share -->
<intent-filter>
<action android:name="android.intent.action.SEND_MULTIPLE" />
<category android:name="android.intent.category.DEFAULT" />
<data android:mimeType="image/*" />
</intent-filter>
功能描述:
元素解析:
使用方式:
注意事项:
匹配优先级说明:
系统版本兼容性:
安全配置建议:
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:scheme="paydemo"
android:host="pay"
android:path="/result" />
</intent-filter>
기능 설명:
요소 해설:
사용 방식:
<activity
android:name=".ui.payment.PayResultActivity"
android:exported="true"
android:launchMode="singleTop">
<!-- 결제 결과 콜백 딥링크 -->
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
<data
android:scheme="paydemo"
android:host="pay"
android:path="/result" />
</intent-filter>
</activity>
주의 사항:
将“活动要做什么”转化为“可直接上线的意图过滤器配置与说明书”。用户只需提供页面/功能用途,即可自动生成符合规范的配置与逐条解读,覆盖深度链接、外部唤起、跨应用分享与通知跳转等核心场景;内置安全与兼容检查,帮助团队快速通过联调与审核,显著降低配置错误、跳转失败与流量损耗,促进业务转化。
请确认您是否已完成支付