我正在开发一个使用自定义方案的 Android 应用程序,如下面的链接所示:
<activity android:name="com.example.library.activities.CustomSchemeActivity">
<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="custom" android:host="custom.example.com" android:path="/custom" />
</intent-filter>
</activity>
当用户单击链接时,例如custom://custom.example.com/custom?parameter=abcd
,CustomSchemeActivity 正在按预期启动。
现在,我需要向这个活动发送数据。我已经可以通过 URL 参数发送它了。不过我很好奇,如果我将数据发布到 Intent,是否可以读取内容?是否可以将数据从服务器发布到手机?