Answers for "android scroll view to bottom when keyboard is on"

1

android scroll view to bottom when keyboard is on

# add this to activity in manifest file
android:windowSoftInputMode="stateAlwaysHidden|adjustResize|stateHidden"

Example:
<activity android:name="com.example.android.views.main.contact.ContactActivity"
  android:windowSoftInputMode="stateAlwaysHidden|adjustResize|stateHidden"
  />
Posted by: Guest on March-16-2021

Code answers related to "android scroll view to bottom when keyboard is on"

Browse Popular Code Answers by Language