1

让我们来看看以下清单:

<intent-filter>
    <data scheme="myscheme"
          host="myhost">
    </data>
    <action name="android.intent.action.VIEW">
    </action>
    <category name="android.intent.category.DEFAULT">
    </category>
    <category name="android.intent.category.BROWSABLE">
    </category>
</intent-filter>

我可以通过将浏览器重定向到以下位置来启动在上述意图过滤器下声明的活动:

myscheme://myhost?param1=param1&param2=param2

但是,我很难理解是否可以进行相同的重定向,只有通过以下方式以编程方式接收的额外附加内容:

myextra = getIntent().getStringExtra('myextra')

任何帮助将不胜感激。

4

3 回答 3

1

这就是我克服这个问题的方法,

我开发了自己的浏览器并像你一样可以浏览

Uri data = getIntent().getData();

if(data == null) { // Opened with app icon click (without link redirect)
    Toast.makeText(this, "data is null", Toast.LENGTH_LONG).show();
}
else { // Opened when a link clicked (with browsable)
    Toast.makeText(this, "data is not null", Toast.LENGTH_LONG).show();
    String scheme = data.getScheme(); // "http"
    String host = data.getHost(); // "twitter.com"
    String link = getActualUrl(host);
    webView.loadUrl(link);
    Toast.makeText(this,"scheme is : "+scheme+" and host is : "+host+ " ",Toast.LENGTH_LONG).show();
}

我认为您正在寻找此功能

data.getQueryParameter(String key);

于 2016-08-08T15:03:53.233 回答
1

当通过 javascript 或 HTML 重定向到自定义意图方案 URL 时,可以使用“意图方案 URL”来发送更多信息,例如额外的对象和操作。

intent://foobar/#Intent;action=myaction1;type=text/plain;S.xyz=123;end

尽管此方法实际上并未回答问题,因为方案部分注定始终是“意图”,但这是一种从浏览器发送带有额外对象或操作的意图的可能方式。

在以下报告中查看更多详细信息:

http://www.mbsd.jp/Whitepaper/IntentScheme.pdf

或者使用 chrome 文档:

https://developer.chrome.com/multidevice/android/intents

于 2016-08-10T07:31:44.390 回答
1

将数据直接从网页传递到您的应用程序的唯一方法是在您在intent-filter. 全部通过Uri对象检索 - 无论数据是在路径上还是带有查询参数,如下所述。Intent无法在网页上设置额外内容。

Uri uri = getIntent().getData();
String param1Value = uri.getQueryParameter("param1");
于 2016-08-08T15:00:11.500 回答