There is a markup with a print panel below. There is SwipyRefreshLayout - library for svayp not down and up. So when the update circle comes out from below, and I open the keyboard, the keyboard seems to be shown above other content. And I need her to lift everything. adjustPan me — I don't like the fact that the ActionBar and the statusbar are hidden. In addition, the keyboard stands under EditText, and I need it to raise the Layout, in which it is located

Here is my markup

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:app="http://schemas.android.com/apk/res-auto" android:layout_height="match_parent" android:layout_width="match_parent" android:orientation="vertical" android:id="@+id/rootTag" android:layout_gravity="bottom" android:background="@drawable/image_2"> <ru.albatros.dindon.CustomSRL.SwipyRefreshLayout android:id="@+id/swipyrefreshlayout" android:layout_width="match_parent" android:layout_weight="1" android:layout_height="wrap_content" app:srl_direction="both"> <ListView android:layout_height="wrap_content" android:layout_width="match_parent" android:id="@+id/lv" android:stackFromBottom="true" android:adjustViewBounds="true" android:divider="#00000000" android:dividerHeight="15dp" android:layout_marginBottom="10dp" android:layout_margin="10dp"/> </ru.albatros.dindon.CustomSRL.SwipyRefreshLayout> <RelativeLayout android:layout_height="60dp" android:layout_width="match_parent" android:id="@+id/connectPOST" android:layout_gravity="bottom" android:layout_marginTop="10dp" android:background="#ffffff" android:orientation="horizontal"> <ImageButton android:layout_height="match_parent" android:layout_alignParentRight="true" android:layout_width="60dp" android:src="@drawable/send" android:id="@+id/send" android:background="#00000000"/> <EditText android:layout_height="match_parent" android:inputType="text" android:layout_width="match_parent" android:ems="10" android:lines="4" android:singleLine="false" android:layout_toLeftOf="@id/send" android:textSize="20sp" android:hint="Ваше сообщение..." android:id="@+id/enter_message" style="@style/Widget.Group" android:textColor="#000000" android:textColorHint="#000000" android:layout_alignParentLeft="true" android:layout_marginLeft="10dp"/> </RelativeLayout> </LinearLayout> 
  • use adjustResize. - Vladyslav Matviienko September
  • If you run the update circle and then call the keyboard, it will close the update circle. And if you first call the keyboard and then pull up, the update circle after hiding the keyboard remains in the middle of the screen. - Flippy

0