Answer the question
In order to leave comments, you need to log in
How to fix interface overlap when opening Android 4.4 API 19 soft keyboard?
The crux of the issue is in the title.
Tried methods that do not help:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:fitsSystemWindows="true"
android:layout_height="fill_parent">
<include
android:id="@+id/tool_bar"
layout="@layout/tool_bar"
/>
<ScrollView
android:id="@+id/scrollview"
android:layout_height="match_parent"
android:layout_width="match_parent"
android:layout_below="@+id/tool_bar"
android:layout_above="@+id/button">
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:orientation="vertical"
android:layout_height="wrap_content">
// Много разных вьюшек и едитвью
</RelativeLayout>
</ScrollView>
<Button
android:id="@+id/button"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Перевести"
android:layout_alignParentBottom="true">
</Button>
</RelativeLayout>
Answer the question
In order to leave comments, you need to log in
Didn't find what you were looking for?
Ask your questionAsk a Question
731 491 924 answers to any question