windowSoftInputMode=“adjustResize” not working with translucent action/navbar
windowSoftInputMode=“adjustResize” not working with translucent action/navbar I have problems with the translucent actionbar/navbar in the new Android KitKat (4.4) and the windowSoftInputMode="adjustResize" . windowSoftInputMode="adjustResize" Normaly changing the InputMode to adjustResize, the app should resize itself when keyboard is shown... but here it won't! If I delete the lines for the transparent effect, the resize is working. So if the keyboard is visible, my ListView is under it and I can't access the last few items. (Only by hiding the keyboard manually) AndroidManifest.xml <?xml version="1.0" encoding="utf-8"?> <manifest xmlns:android="http://schemas.android.com/apk/res/android" package="XYZ" android:versionCode="23" android:versionName="0.1" > <uses-sdk android:minSdkVersion="9" android:targetSdkVersion="19" /> <application android:al...