gpt4 book ai didi

android - 使用 Intent Android 获取 url

转载 作者:塔克拉玛干 更新时间:2023-11-02 22:36:52 25 4
gpt4 key购买 nike

我正在尝试获取为打开应用程序而单击的 URL。我只是找不到在哪里可以获得该信息。我有一个 list ,它在单击时打开应用程序。链接将是“http://host.com/file.html?param=1&param2=2”,我试图将其提供给应用程序进行处理。

 <intent-filter>
<data android:scheme="http"
android:host="host.com"
android:pathPrefix="/file.html" />
<action android:name="android.intent.action.VIEW" />
<category android:name="android.intent.category.BROWSABLE" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>

编辑

@Override
protected void onCreate(Bundle savedInstanceState)
{
super.onCreate(savedInstanceState);

Intent intent = getIntent();
Uri uri = intent.getData();
try {
url = new URL(uri.getScheme(), uri.getHost(), uri.getPath());
} catch (MalformedURLException e) {
// TODO Auto-generated catch block
e.printStackTrace();
}
}

最佳答案

您应该能够通过以下方式获取 Activity 中的 Intent 数据:

Uri uri = this.getIntent().getData();
URL url = new URL(uri.getScheme(), uri.getHost(), uri.getPath());

关于android - 使用 Intent Android 获取 url,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/28420242/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com