#android #android-constraintlayout
Вопрос:
Когда я нажимаю на 1 из 3 редактируемых текстов, появляется моя клавиатура, и представление немного прокручивается вверх. Но мой макет должен двигаться полностью вверх. Мой xml-файл:
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:id="@ id/scrollView"
android:fillViewport="true"
android:layout_width="match_parent"
android:layout_height="wrap_content"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@ id/toolbar"
app:layout_constraintVertical_bias="0.01999998">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:paddingBottom="126dp">
<EditText
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/padding_default"
android:padding="@dimen/padding_small"
android:paddingHorizontal="@dimen/padding_default"
app:layout_constraintTop_toTopOf="parent"
tools:layout_editor_absoluteX="16dp" />
<EditText
android:id="@ id/instructionsEditText"
android:layout_width="match_parent"
android:layout_height="600dp"
android:layout_margin="@dimen/padding_default"
android:gravity="top|start"
android:padding="@dimen/padding_small"
android:paddingHorizontal="@dimen/padding_default"
app:layout_constraintTop_toBottomOf="@ id/amountPersonsEditText" />
<EditText
android:id="@ id/notesEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/padding_default"
android:padding="@dimen/padding_small"
android:paddingHorizontal="@dimen/padding_default"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@ id/instructionsEditText"
tools:layout_editor_absoluteX="16dp" />
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
<android.widget.Button
android:id="@ id/saveInstructionsButton"
style="@style/buttonStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_marginBottom="@dimen/padding_default"
android:gravity="center"
android:imeOptions="actionDone"
android:text="@string/instructions_button_text"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent" />
</androidx.constraintlayout.widget.ConstraintLayout>
Мое андроидное проявление:
<activity
android:name=".ui.instructions.InstructionsActivity"
android:windowSoftInputMode="adjustResize"
android:screenOrientation="portrait" />
Я тоже пробовал это:
fun ScrollView.moveToTop() {
this.isFocusableInTouchMode = true
this.fullScroll(View.FOCUS_DOWN)
this.smoothScrollTo(0, bottom)
}
но кнопка находится за пределами области прокрутки, а нижняя кнопка должна находиться в верхней части клавиатуры.
Начать:
Фактический:
Ожидаемый:
Комментарии:
1. Я не могу правильно вас понять, пожалуйста, объясните свою озабоченность
Ответ №1:
Добавьте приведенный ниже код в свой вид прокрутки:
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toTopOf="@ id/saveInstructionsButton"
И этот код в нижней кнопке:
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"
Пример кода:
<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:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView
android:id="@ id/scrollView"
android:fillViewport="true"
android:layout_width="match_parent"
android:layout_height="0dp"
app:layout_constraintTop_toTopOf="parent"
app:layout_constraintStart_toStartOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintBottom_toTopOf="@ id/saveInstructionsButton">
<androidx.constraintlayout.widget.ConstraintLayout
android:layout_width="match_parent"
android:layout_height="wrap_content">
<EditText
android:id="@ id/amountPersonsEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/padding_default"
android:padding="@dimen/padding_small"
android:paddingHorizontal="@dimen/padding_default"
app:layout_constraintTop_toTopOf="parent"
tools:layout_editor_absoluteX="16dp"
android:focusableInTouchMode="true" />
<EditText
android:id="@ id/instructionsEditText"
android:layout_width="match_parent"
android:layout_height="600dp"
android:layout_margin="@dimen/padding_default"
android:gravity="top|start"
android:padding="@dimen/padding_small"
android:paddingHorizontal="@dimen/padding_default"
android:focusableInTouchMode="true"
app:layout_constraintTop_toBottomOf="@ id/amountPersonsEditText" />
<EditText
android:id="@ id/notesEditText"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_margin="@dimen/padding_default"
android:padding="@dimen/padding_small"
android:paddingHorizontal="@dimen/padding_default"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintTop_toBottomOf="@ id/instructionsEditText"
tools:layout_editor_absoluteX="16dp"
android:focusableInTouchMode="true"/>
</androidx.constraintlayout.widget.ConstraintLayout>
</ScrollView>
<android.widget.Button
android:id="@ id/saveInstructionsButton"
style="@style/buttonStyle"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:gravity="center"
android:imeOptions="actionDone"
android:text="@string/instructions_button_text"
app:layout_constraintBottom_toBottomOf="parent"
app:layout_constraintEnd_toEndOf="parent"
app:layout_constraintStart_toStartOf="parent"/>
</androidx.constraintlayout.widget.ConstraintLayout>
Код файла манифеста:
<activity
android:name=".ui.instructions.InstructionsActivity"
android:windowSoftInputMode="adjustResize"
android:screenOrientation="portrait" />
Вывод для приведенного выше кода является:
Комментарии:
1. странно, что это не работает. Я попробую отдельный проект, я ожидаю, что это сработает.
Ответ №2:
Ваш xml в порядке, попробуйте изменить объявление о своей деятельности в манифесте, как показано ниже,
<activity
android:name=".ui.instructions.InstructionsActivity"
android:configChanges="orientation|keyboardHidden|screenSize"
android:screenOrientation="portrait" />
Ответ №3:
Замените эту строку :
android:windowSoftInputMode="adjustResize"
с :
android:windowSoftInputMode="adjustPan"
Он переместит ваш редактируемый текст над клавиатурой при вводе.
Ответ №4:
Вы должны использовать stateAlwaysVisibe для режима windowsofinput следующим образом:
<activity
android:name=".ui.instructions.InstructionsActivity"
android:windowSoftInputMode="stateAlwaysVisible"
android:screenOrientation="portrait" />
Ответ №5:
Согласно документации: https://developer.android.com/training/keyboard-input/visibility
Рассмотрите возможность изменения android:windowSoftInputMode
для этого вида деятельности в AndroidManifest.xml
Я думаю: android:windowSoftInputMode="adjustPan"
следует решить эту проблему.