键盘打开后更改EditText焦点

问题描述 投票:-1回答:1

当我点击它时,我注意到了EditText焦点的问题。一般来说,我有使用RecyclerView的NestedScroll,其中我有一些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>

android kotlin android-recyclerview android-edittext android-textinputedittext
1个回答
0
投票

您还没有共享代码。您是否尝试过在onClick方法中使用请求焦点?

public void onClick(View v) {
EditText ed = v.findViewById(R.id.yourEditText);
ed.requestFocus();
}
© www.soinside.com 2019 - 2024. All rights reserved.