Программная клавиатура: Adjust_Resize, выталкивающая контент за пределы экрана - PullRequest
0 голосов
/ 23 января 2020

Я создаю приложение, похожее на обмен сообщениями, но у меня возникли проблемы с клавиатурой, которая неправильно выводит содержимое.

То, что я хочу, - это чтобы содержимое двигалось вверх ровно настолько, насколько высока клавиатура, и чтобы я мог свободно прокручивать вверх, чтобы просмотреть все предыдущие сообщения. Как и большинство приложений для обмена сообщениями.

Вот мой макет. Я добавляю раскладки к раскладке внутри прокрутки.

<?xml version="1.0" encoding="utf-8"?>
<androidx.constraintlayout.widget.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:app="http://schemas.android.com/apk/res-auto"
    xmlns:tools="http://schemas.android.com/tools"
    android:id="@+id/open_messsages_constraint"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".OpenMessages">


    <ScrollView
        android:id="@+id/messages_scroll2"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        app:layout_constraintEnd_toEndOf="parent"
        app:layout_constraintStart_toStartOf="parent"
        app:layout_constraintBottom_toTopOf="@id/linearLayout">


        <LinearLayout
            android:id="@+id/allMessage"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:orientation="vertical"
            app:layout_constraintTop_toTopOf="parent">

        </LinearLayout>


    </ScrollView>


    <LinearLayout
        android:id="@+id/linearLayout"
        android:layout_width="match_parent"
        android:layout_height="50dp"
        android:background="#ffffff"
        android:backgroundTint="#ffffff"
        app:layout_constraintBottom_toBottomOf="parent">

        <EditText
            android:id="@+id/messageInput"
            android:layout_width="match_parent"
            android:layout_height="40dp"
            android:layout_gravity="center"
            android:layout_marginLeft="20dp"
            android:layout_weight="4"
            android:background="@drawable/rounded_corner"
            android:backgroundTint="#f1f1f1"
            android:paddingLeft="20dp"
            android:textColorLink="#000000" />


        <com.google.android.material.button.MaterialButton
            android:id="@+id/sendMessageButton"
            android:layout_width="50dp"
            android:layout_height="30dp"
            android:layout_gravity="center"
            android:backgroundTint="#ffffff"
            android:gravity="center"
            android:stateListAnimator="@null"
            app:iconTint="#000000">

        </com.google.android.material.button.MaterialButton>
    </LinearLayout>


</androidx.constraintlayout.widget.ConstraintLayout>

Вот до нажатия на клавиатуру: Before I select the keyboard. Вот после. Я могу прокрутить вниз, чтобы просмотреть сообщение ниже, но не могу прокрутить вверх мимо этой картинки, поэтому я пропускаю сообщение. After I click the keyboard.

Ответы [ 2 ]

0 голосов
/ 23 января 2020

Замените ваш LinearLayout на allMessage следующим:

<LinearLayout
            android:id="@+id/allMessage"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:gravity="center"
            android:orientation="vertical"
            android:layout_marginTop="50dp" // Add this line to view last messages
            app:layout_constraintTop_toTopOf="parent">

        </LinearLayout>
0 голосов
/ 23 января 2020

Это работа для меня:

android:windowSoftInputMode="adjustResize"

И установите отступы для заполнения Recyclerview Bottom.

padding:20
Добро пожаловать на сайт PullRequest, где вы можете задавать вопросы и получать ответы от других членов сообщества.
...