Изменение фокуса EditText после открытия клавиатуры - PullRequest
0 голосов
/ 13 февраля 2019

Я заметил проблему с фокусом EditText, когда нажал на него.Обычно у меня есть NestedScroll с RecyclerView, в котором у меня есть несколько элементов управления EditText.После прикосновения к одному из них отображается клавиатура, но после этого мой фокус устанавливается на первый EditTest сверху, а не на тот, который я нажал.

У вас есть какие-либо предложения, как я могу решить эту проблему?

Ниже приведен пример макета моей активности.

<android.support.constraint.ConstraintLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
xmlns:app="http://schemas.android.com/apk/res-auto"
android:padding="@dimen/general_padding"
android:background="@color/window_color">

<android.support.v4.widget.NestedScrollView
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:orientation="vertical">

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:focusableInTouchMode="true"
        android:orientation="vertical">

        <LinearLayout
            android:id="@+id/genericSection"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:orientation="vertical">

            <!-- Title -->
            <LinearLayout
                android:id="@+id/titleContainer"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical">

                <include layout="@layout/item_formt_element_title" />
                <include layout="@layout/item_formt_element_single_separator" />

            </LinearLayout>

            <!-- Tags -->
            <LinearLayout
                android:id="@+id/tagsContainer"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:orientation="vertical">

                <include layout="@layout/item_formt_element_tags" />
                <include layout="@layout/item_formt_element_single_separator" />

            </LinearLayout>

        </LinearLayout>

        <!-- Form elements -->
        <android.support.v7.widget.RecyclerView
            android:id="@+id/formRecyclerView"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:focusableInTouchMode="true"
            app:layout_constraintTop_toBottomOf="@id/genericSection"/>

        <!-- Footer -->
        <View
            android:layout_width="match_parent"
            android:layout_height="20dp"
            android:background="@drawable/rounded_bottom"
            android:layout_marginBottom="@dimen/general_padding_bottom"
            app:layout_constraintStart_toStartOf="@id/formtsRecyclerView"
            app:layout_constraintEnd_toEndOf="@id/formtsRecyclerView"
            app:layout_constraintTop_toBottomOf="@id/formtsRecyclerView"/>

    </LinearLayout>

</android.support.v4.widget.NestedScrollView>

1 Ответ

0 голосов
/ 13 февраля 2019

У вас нет общего кода.Вы пытались использовать фокус запроса в вашем методе onClick?

public void onClick(View v) {
EditText ed = v.findViewById(R.id.yourEditText);
ed.requestFocus();
}
...