Мое приложение выглядит следующим образом:
Как вы можете видеть, есть несколько текстовых представлений для измерений, ниже, чем текстовое представление для некоторыхинформация (где написано, что Bluetooth отключен ...) и последнее поле edittext, чтобы опубликовать что-то.Когда вы нажимаете, чтобы написать что-то, клавиатура появляется, но ТОЛЬКО последнее текстовое представление перемещается и накладывается на измерения, например:
Я неМне действительно все равно, если размер экрана или панорамирование, и я попытался все атрибуты в файле манифеста (ничего, AdjustResize, AdjustPan) безуспешно, то же самое происходит ...
Я также пытался удалить всеэти текстовые изображения с иконками и оставить только один простой текстовый вид.То же самое: ТОЛЬКО последнее перемещение текстового представления ...
Компоновка построена с фрагментами, чтобы пролистывать представления:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:fitsSystemWindows="true"
android:orientation="vertical">
<android.support.v4.view.ViewPager
android:id="@+id/viewPager"
android:layout_centerInParent="true"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<android.support.v4.view.PagerTabStrip
android:id="@+id/pager_tab_strip"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_gravity="top"
android:background="#33b5e5"
android:textColor="#fff"
android:paddingTop="5dp"
android:paddingBottom="5dp" />
</android.support.v4.view.ViewPager>
</RelativeLayout>
и конкретный фрагмент, который мыУ проблемы есть следующая раскладка:
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<RelativeLayout
android:id="@+id/layout1"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/textView2"
android:layout_width="wrap_content"
android:layout_alignParentLeft="true"
android:layout_height="wrap_content"
android:textSize="20sp"
android:drawableStart="@drawable/pm25resized"
android:text="PM 2.5μm" />
<TextView
android:id="@+id/send1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="22sp"
android:layout_alignParentRight="true"
android:text="μg/m3" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/layout2"
android:layout_below="@id/layout1"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/textView3"
android:layout_width="wrap_content"
android:layout_alignParentLeft="true"
android:layout_height="wrap_content"
android:textSize="20sp"
android:drawableStart="@drawable/pm10resized"
android:text="PM 10μm" />
<TextView
android:id="@+id/send2"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="22sp"
android:layout_alignParentRight="true"
android:text="μg/m3" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/layout3"
android:layout_below="@id/layout2"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/textView4"
android:layout_width="wrap_content"
android:textSize="20sp"
android:layout_alignParentLeft="true"
android:layout_height="wrap_content"
android:drawableStart="@drawable/humidityresized"
android:text="Humidity" />
<TextView
android:id="@+id/send3"
android:textSize="22sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="%" />
</RelativeLayout>
<RelativeLayout
android:id="@+id/layout4"
android:layout_below="@id/layout3"
android:layout_width="match_parent"
android:layout_height="wrap_content">
<TextView
android:id="@+id/textView5"
android:textSize="20sp"
android:layout_width="wrap_content"
android:layout_alignParentLeft="true"
android:layout_height="wrap_content"
android:drawableStart="@drawable/temperatureresized"
android:text="Temperature" />
<TextView
android:id="@+id/send4"
android:textSize="22sp"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentRight="true"
android:text="°C" />
</RelativeLayout>
<TextView
android:id="@+id/textView"
android:layout_width="match_parent"
android:layout_height="100dp"
android:layout_alignParentBottom="true"
android:layout_marginBottom="60dp"
android:scrollbars="vertical" />
<RelativeLayout
android:layout_width="match_parent"
android:layout_alignParentBottom="true"
android:layout_height="60dp" >
<EditText
android:id="@+id/editText"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignBottom="@+id/send"
android:layout_marginRight="40dp"
android:layout_marginBottom="0dp"
android:hint="@string/edittext_hint"
android:singleLine="false" />
<Button
android:id="@+id/send"
android:layout_alignParentRight="true"
android:layout_alignParentBottom="true"
android:layout_height="40dp"
android:layout_width="40dp"
android:layout_marginRight="6dp"
android:background="@drawable/send512" />
</RelativeLayout>
</RelativeLayout>
Есть идеи ???