Answers for "android studio listview lifting up when using keyboard"

0

android studio listview lifting up when using keyboard

//add these into the ListView attributes in xml file
android:focusableInTouchMode="false"
android:isScrollContainer="false"

//add it inside of the ListView element like this
<ListView
   android:id="@+id/listview5"
   android:layout_width="0dp"
   android:layout_height="0dp"
   app:layout_constraintBottom_toBottomOf="parent"
   app:layout_constraintEnd_toEndOf="parent"
   app:layout_constraintStart_toStartOf="parent"
   app:layout_constraintTop_toTopOf="parent"
 **android:focusableInTouchMode="false"
 **android:isScrollContainer="false"
/>
Posted by: Guest on August-25-2021

Code answers related to "android studio listview lifting up when using keyboard"

Browse Popular Code Answers by Language