I have an activity which has fragment and android.intent.category.MULTIWINDOW_LAUNCHER | android.intent.category.LAUNCHER
intent-filter.
If I open the app firstly, it follows the following sequence : onCreate - onResume
and activity works nicely ✓</p>
If I open the application via pendingIntent on notification, it follows the following sequence : onNewIntent - onResume
and activity works nicely ✓</p>
If I shrink activity to split screen, it follows the following sequence : onResume - onPause
although the activity screen appears, activities view operations are not working. I want to work in this state too ✗</p>
Please help me.
<activity
android:name=".android.baby.TabActivity"
android:configChanges="layoutDirection|locale|keyboard|keyboardHidden|orientation|screenSize"
android:launchMode="singleTask"
android:screenOrientation="portrait"
android:windowSoftInputMode="stateHidden|adjustPan|adjustResize">
<intent-filter>
<category android:name="android.intent.category.LAUNCHER" />
<category android:name="android.intent.category.MULTIWINDOW_LAUNCHER" />
</intent-filter>
</activity>