在我的应用程序中,我有OTP输入屏幕,因此我需要在最后一个屏幕中输入otp。为此,我有6个屏幕,在这最后一个屏幕中是otp输入屏幕(ForgotPasswordEnterOTP)。在这里,我的问题是在第6个屏幕后,再次按下主屏幕按钮打开我的应用程序,它将显示最后一个屏幕(ForgotPasswordEnterOTP)。 但是在设备启动器屏幕的所有应用程序中搜索我的应用程序,然后打开我的应用程序,然后应用程序将从启动状态打开。但是,在这里,我需要显示最后一个屏幕(ForgotPasswordEnterOTP)。但是,如果在不搜索的情况下打开应用程序,则它可以正常工作。但是在仅搜索应用程序时出现问题。我也尝试了启动模式。但是没用。
这是清单文件代码
<application
android:name=".api.APIClient"
android:allowBackup="true"
android:icon="@drawable/launcher_logo"
android:label="@string/app_name"
android:largeHeap="true"
android:roundIcon="@drawable/launcher_logo"
android:supportsRtl="true"
android:theme="@style/AppTheme"
tools:replace="android:icon">
<activity
android:name=".SplashScreen"
android:exported="true"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar">
<intent-filter>
<action android:name="android.intent.action.MAIN" />
<category android:name="android.intent.category.LAUNCHER" />
</intent-filter>
</activity>
<activity
android:name=".MainActivity"
android:screenOrientation="portrait"
android:theme="@style/AppTheme.NoActionBar" />
<activity
android:name=".LoginActivity"
android:screenOrientation="portrait"
/>
<activity
android:name=".ForgotPassword"
android:label="@string/title_forgot_password"
android:screenOrientation="portrait" />
<activity
android:name=".ForgotPasswordOTP"
android:label="@string/forgot_password"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden" />
<activity
android:name=".ForgotPasswordEnterOTP"
android:label="@string/forgot_password"
android:exported="true"
android:screenOrientation="portrait" />
/>
在这种情况下,只会出现问题。在搜索我的应用程序然后打开它。在那个时候只有问题。
那么如何解决此问题。请指导我,谢谢您的帮助。