android - Layout pushes up when keyboard popups -
whole layout pushes when keyboard pops up. xml file contains listview , below 2 buttons, when keyboard popups both listview , buttons pushes up. <?xml version="1.0" encoding="utf-8"?> <linearlayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical" tools:context="com.example.athis.buy.homescreen"> <searchview android:layout_width="match_parent" android:layout_height="wrap_content" /> <listview android:id="@+id/list_item" android:layout_width="match_parent" android:layout_height="0dp" android:layout_margintop="10dp" android:layout_weight="8" android:divide...