windowSoftInputMode=“adjustResize” 在我的 Activity 中不起作用

windowSoftInputMode=“adjustResize” doesn't work in my Activity

我有类似表单的 editTexts,我的 softkeyboardeditText 字段重叠。在我的 FragmentActivity 中,我只是在我的 AndroidManifest(或 onCreate())中设置了 windowSoftInputMode=“adjustResize” 并且它起作用了。但是在我的常规 Activity 中,我设置了这个,但它根本不起作用。

我不能设置 android:fitsystemwindow="true" 因为它会破坏我透明 statusBar 和不透明 navigationBar.

的布局

AndroidManifest

<activity
    android:name=".ProfilePackage.EditProfile.EditProfileActivity"
    android:screenOrientation="portrait"
    android:windowSoftInputMode="adjustResize"
    android:label="@string/app_name">
</activity>
<activity
        android:name=".Activities.CommentActivity"
        android:windowSoftInputMode="adjustPan" />

我遇到了同样的问题,软键盘覆盖了其他视图。所以我在清单中添加了这一行。