我正在尝试在我的本机Android应用程序中实现深层链接。链接通过和短信发送,当点击链接时,它打开应用程序,并根据我使用android:launchMode="singleTop"
导航到一个特定屏幕的网址。我面临的问题是,当点击链接时,应用程序的新实例打开,我不想这样,所以我在android:launchMode="singleTask"
更改为activity
到我的AndroidManifest.xml
,现在只有一个实例。但是现在当点击来自SMS的链接时,它会恢复现有页面,我无法点击该网址。
我实现了'AppState'以了解屏幕何时恢复,但是也没有给我提供网址。
我希望能够实现的是
Splash activity
开始完全重新启动,我知道我可以根据URL获取URL并从那里导航。 (android:launchMode="singleTop"
不会重新启动应用程序但会打开一个新实例)表现
<manifest xmlns:android="http://schemas.android.com/apk/res/android"
package="com.abcdabcdapp">
<uses-permission android:name="android.permission.INTERNET" />
<uses-permission android:name="android.permission.SYSTEM_ALERT_WINDOW"/>
<application
android:name=".MainApplication"
android:label="@string/app_name"
android:icon="@mipmap/ic_launcher"
android:allowBackup="false"
android:theme="@style/AppTheme">
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:launchMode="singleTop"
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>
//This is what is required to open from the link
<intent-filter android:label="ABCD App">
<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="abcd"
android:pathPrefix="/createpassword" />
</intent-filter>
</activity>
<activity android:name="com.facebook.react.devsupport.DevSettingsActivity" />
</application>
</manifest>
通过短信发送的链接 - http://abcd/createpassword
启动画面 - 初始画面。
componentDidMount() {
setTimeout(() => {
this.whereShoulINavigateTo();
}, 2500);
}
whereShoulINavigateTo = async () => {
if (Platform.OS === 'android') {
Linking.getInitialURL().then( async (url) => {
//this.navigate(url);
if(url === 'http://abcd/createpassword')
{
this.props.navigation.navigate('CreatePasswordScreen');
}else{
//do something
}
});
} else {
alert('ios url -' + url );
//Linking.addEventListener('url', this.handleOpenURL);
}
}
上面的设置与android:launchMode="singleTop"
工作正常,但唯一的问题是我不想要一个新的应用程序实例。
所以我尝试了以下更改
表现
android:launchMode="singleTask"
这样只有一个实例,当点击URL时,应用程序将恢复。
所以我将AppState添加到恢复的页面并尝试获取URL,但这不起作用。
componentDidMount(){
//this.whereShoulINavigateTo();
AppState.addEventListener('change', this._handleAppStateChange);
}
componentWillUnmount() {
AppState.removeEventListener('change', this._handleAppStateChange);
}
_handleAppStateChange = (nextAppState) => {
if (this.state.appState.match(/inactive|background/) && nextAppState === 'active') {
console.log('App has come to the foreground!')
this.whereShoulINavigateTo();
}
this.setState({appState: nextAppState});
}
whereShoulINavigateTo = async () => {
if (Platform.OS === 'android') {
Linking.getInitialURL().then( async (url) => {
alert('url - ' + url)
if(url === 'http://abcd/createpassword')
{
this.props.navigation.navigate('CreatePasswordScreen');
}
});
} else {
alert('ios url -' + url );
//Linking.addEventListener('url', this.handleOpenURL);
}
}
请建议。
谢谢R
这是适合我的解决方案。
启动模式我已将其设置为singleTask
Manifest.xml
<activity
android:name=".MainActivity"
android:label="@string/app_name"
android:launchMode="singleTask"
android:configChanges="keyboard|keyboardHidden|orientation|screenSize"
android:windowSoftInputMode="adjustResize">
在我的应用程序中打开的初始屏幕是启动画面。假设您收到了短信,并且您的应用已关闭,我们将重新打开该应用,以便始终在我的案例启动画面中打开初始屏幕。
这是我的启动画面代码。
componentDidMount() {
setTimeout(() => {
this.whereShoulINavigateTo();
}, 2500);
}
whereShoulINavigateTo = async () => {
encryptString('abcd');
decryptString('abcd');
if (Platform.OS === 'android') {
Linking.getInitialURL().then( async (url) => {
if(url === 'http://abcd/1234')
{
//if the url is right do something
}else{
}
});
} else {
alert('ios url -' + url );
//Linking.addEventListener('url', this.handleOpenURL);
//Not implemented for iOS yet
}
}
当应用程序打开并收到消息时,在其他屏幕上。你点击链接,它打开同一个屏幕。因此在该屏幕上需要遵循逻辑。
componentDidMount(){
Linking.addEventListener('url', this.handleOpenURL);
}
componentWillUnmount() {
Linking.removeEventListener('url', this.handleOpenURL);
}
handleOpenURL = async (event) => {
consoleLog('url - ' + event.url);
if(event.url === 'http://abcd/1234')
{
//if the url is right do something
}
}
希望能帮助到你。
如果您需要任何进一步的信息,请告诉我
谢谢R