UI move upward when keyboard open
android
Solution
It Solved my problem.
Thanks to all.
<activity
android:name=".AddProductsActivity"
android:configChanges="orientation"
android:hardwareAccelerated="false"
android:windowSoftInputMode="adjustPan" />
Problem
I am making the UI of the application. When i tried to enter the value in the `EditText` then keyboard move the UI upward. Please help me when keyboard open then it should not move the UI upward. ``` <activity android:name=".AddProductsActivity" android:configChanges="orientation" android:hardwareAccelerated="false" android:windowSoftInputMode="adjustResize" /> ```