我正在开发一个cordova应用,该应用将使用chariotsolutions nfc插件通过NFC在设备之间传输数据。如果其他用户没有该应用程序,我希望该应用程序将URL发送到网站。但是,如果他们的设备上安装了应用程序,则打开他们的应用程序,而不打开URL。我看过this stackoverflow帖子,其中提到了网络意图。我试图将我的意图过滤器设置为这样,但还是没有运气:
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="http" android:host="www.example.com" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
我的整个清单文件看起来像这样:
<?xml version='1.0' encoding='utf-8'?>
<manifest android:hardwareAccelerated="true" android:versionCode="10000" android:versionName="1.0.0" package="io.cordova.hellocordova" xmlns:android="http://schemas.android.com/apk/res/android">
<supports-screens android:anyDensity="true" android:largeScreens="true" android:normalScreens="true" android:resizeable="true" android:smallScreens="true" android:xlargeScreens="true" />
<uses-permission android:name="android.permission.INTERNET" />
<application android:hardwareAccelerated="true" android:icon="@mipmap/icon" android:label="@string/app_name" android:supportsRtl="true">
<activity android:configChanges="orientation|keyboardHidden|keyboard|screenSize|locale" android:label="@string/activity_name" android:launchMode="singleTop" android:name="MainActivity" android:theme="@android:style/Theme.DeviceDefault.NoActionBar" android:windowSoftInputMode="adjustResize">
<intent-filter android:label="@string/launcher_name">
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
<intent-filter>
<action android:name="android.intent.action.VIEW" />
<data android:scheme="http" android:host="www.example.com" />
<category android:name="android.intent.category.DEFAULT" />
<category android:name="android.intent.category.BROWSABLE" />
</intent-filter>
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED" />
<!--custom mimetype filter to open app-->
<data android:mimeType="text/shunt" />
<category android:name="android.intent.category.DEFAULT" />
</intent-filter>
</activity>
<provider android:authorities="${applicationId}.provider" android:exported="false" android:grantUriPermissions="true" android:name="org.apache.cordova.camera.FileProvider">
<meta-data android:name="android.support.FILE_PROVIDER_PATHS" android:resource="@xml/camera_provider_paths" />
</provider>
</application>
<uses-sdk android:minSdkVersion="16" android:targetSdkVersion="26" />
<uses-permission android:name="android.permission.NFC" />
<uses-feature android:name="android.hardware.nfc" android:required="false" />
<uses-permission android:name="android.permission.WRITE_EXTERNAL_STORAGE" />
<uses-permission android:name="android.permission.VIBRATE" />
</manifest>
我也尝试过这种意图过滤器,也没有任何运气
<intent-filter>
<action android:name="android.nfc.action.NDEF_DISCOVERED"></action>
<category android:name="android.intent.category.DEFAULT"></category>
<data android:host="www.example.com" android:scheme="http" />
</intent-filter>
我的问题是,即使其他设备安装了该应用程序,当我发送URL时,它也会立即在浏览器中打开链接。
我想知道我设置的意图过滤器是否错误,还是因为我创建了uriRecord?
let record = ndef.uriRecord("www.example.com");
nfc.share([record]); //shares the payload
是否可以设置一个意图过滤器来检查是否发送了特定的URL,然后打开该应用(如果存在),否则打开该URL?还是使用mimeMediaRecord进行某种解决?
任何帮助将不胜感激。