gpt4 book ai didi

android - DeepLinking 可以工作,但无法使用 react 导航导航到预期屏幕

转载 作者:行者123 更新时间:2023-12-02 12:30:03 27 4
gpt4 key购买 nike

我使用的是 Android,我想使用 DeepLink 通过 React 导航打开特定屏幕。

这是我的 list :

<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.samtbook">

<application
android:name=".MainApplication"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:roundIcon="@mipmap/ic_launcher_round"
android:allowBackup="false"
android:theme="@style/AppTheme"
android:supportsRtl="false"
android:usesCleartextTraffic="true"
>
<activity
android:launchMode="singleTask"
android:name=".MainActivity"
android:label="@string/app_name"
android:screenOrientation="portrait"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:windowSoftInputMode="adjustResize">
<intent-filter>
<action android:name="android.intent.action.MAIN"/>
<category android:name="android.intent.category.LAUNCHER"/>
</intent-filter>
<intent-filter android:autoVerify="true">
<action android:name="android.intent.action.VIEW"/>
<category android:name="android.intent.category.DEFAULT"/>
<category android:name="android.intent.category.BROWSABLE"/>
<data android:scheme="http" android:host="samtbook.me"/>
</intent-filter>
</activity>
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity"/>
<meta-data
android:name="com.google.android.geo.API_KEY"
android:value="API_KET"/> // HIDDEN
</application>

这是我使用的链接:

http://samtbook.me/test/

我像这样注册了我的 DeepLink:

  componentDidMount() {
Linking.addEventListener('url', this.handleOpenURL);
}
componentWillUnmount() {
Linking.removeEventListener('url', this.handleOpenURL);
}

handleOpenURL = (event) => {
this.navigate(event.url);
};
navigate = (url) => {
this.props.navigation.navigate('TestScreen');
};

问题是当应用程序没有在后台运行时(意味着死了)我单击链接,它会打开应用程序,但不会导航到预期的屏幕但是当应用程序在后台运行时,它会导航

提前致谢

最佳答案

使用 dr:
https://reactnavigation.org/docs/en/deep-linking.html 中提到的 React 导航深度链接

关于android - DeepLinking 可以工作,但无法使用 react 导航导航到预期屏幕,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/58078447/

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