您好,从 URL 打开应用程序我有下面的代码
<intent-filter>
<action android:name="android.intent.action.VIEW"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<category android:name="android.intent.category.BROWSABLE"></category>
<data android:host="maps.google.com" android:scheme="http"></data>
</intent-filter>
网址如下
https://maps.google.com/maps?q=70.005540,-111.000050
并在下面的活动中获取数据是我的代码
Uri data = getIntent().getData();
if (data != null) {
txtView.setText(data.getPath());
}
我的问题是当我点击上面的 URL 时,我的应用程序没有打开......