从本机应用程序打开闹钟

时间:2018-04-08 10:53:40

标签: javascript android reactjs react-native

我想从本机应用程序打开一个警报设置屏幕。我已经通过数据URI方案从反应原生按钮打开了android 地图当我正在尝试android AlarmClock 没有数据URI方案。我该如何打开它。对于本地的反应,我只需使用

Linking.openURL('geo:');

和地图的意图是

<intent-filter>
        <action android:name="android.intent.action.VIEW" />
        <data android:scheme="geo" />
        <category android:name="android.intent.category.DEFAULT" />
</intent-filter>

设置闹钟的意图是

<intent-filter>
    <action android:name="android.intent.action.SET_ALARM" />
    <data android:scheme="setalarm" />
    <category android:name="android.intent.category.BROWSABLE" />
    <category android:name="android.intent.category.DEFAULT" />
</intent-filter>

我只是叫它 Linking.openURL('setalarm:')

我想打开就像来自Android Clock的屏幕一样 enter image description here

0 个答案:

没有答案