具有片段和导航组件的android上的方向问题

时间:2020-01-21 12:51:10

标签: android kotlin android-jetpack android-orientation

片段始终返回与活动附加到其之前相同的方向。 尽管通过newConfig参数进行访问时,它会在 onConfigurationChanged 方法内返回正确的方向。

场景:以纵向模式打开一个片段。 导航到另一个片段,然后通过旋转设备来更改方向。 导航到先前选择的片段 该片段应返回当前方向,但始终返回较早的方向。 注意:请使用单一活动模式,不要在任何地方通过代码设置方向。

<application
    android:name="com.irdeto.kplus.presentation.KPlusApplication"
    android:allowBackup="false"
    android:fullBackupContent="@xml/backup_descriptor"
    android:icon="@drawable/k_app_icon"
    android:label="@string/app_name"
    android:largeHeap="true"
    android:resizeableActivity="false"
    android:theme="@style/AppBaseTheme"
    android:usesCleartextTraffic="true"
    tools:ignore="GoogleAppIndexingWarning">
    <activity
        android:name="com.irdeto.kplus.presentation.feature.home.HomeActivity"
        android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
        android:label="@string/title_activity_home" />
    <activity
        android:name="com.irdeto.kplus.presentation.feature.splash.SplashActivity"
        android:configChanges="orientation|screenSize|screenLayout|keyboardHidden">
        <intent-filter>
            <action android:name="android.intent.action.MAIN" />
            <category android:name="android.intent.category.LAUNCHER" />
        </intent-filter>
    </activity>
    <activity
        android:name="com.irdeto.kplus.presentation.feature.login.LoginActivity"
        android:configChanges="orientation|screenSize|screenLayout|keyboardHidden"
        android:windowSoftInputMode="adjustResize" />
</application>

0 个答案:

没有答案