【问题标题】:Android When Keyboard Open Bottom EditText Not ShowingAndroid当键盘打开底部EditText不显示
【发布时间】:2019-08-20 16:23:38
【问题描述】:

我使用带有服装行的 RecyclerView。 Costum 行具有线性布局(水平),它有两个 TextView,一个 EditText,行数为 50。所以我的问题是当键盘打开我的底部 EditText 现在显示时,我可以只显示带有键盘“Enter”按钮的 EditText。我想在键盘打开时调整屏幕大小或类似的东西。 我试过了,但它不起作用。 android:windowSoftInputMode="adjustResize"

我的活动:

<RelativeLayout
android:id="@+id/playGameRelative"
xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#FDF2DF"
tools:context=".PlayGameActivity">

<RelativeLayout
    android:id="@+id/playGameInfoTop"
    android:layout_width="match_parent"
    android:layout_height="45dp"
    android:background="#D0C7B7">

    <TextView
        android:id="@+id/playGameTxtGameTimer"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:textSize="20sp"
        android:textStyle="bold"
        android:layout_centerVertical="true"
        android:layout_alignParentEnd="true"
        android:layout_marginEnd="10dp"/>

</RelativeLayout>

<android.support.v7.widget.RecyclerView
    android:id="@+id/playGameRecycle"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:layout_below="@+id/playGameInfoTop"
    android:layout_above="@+id/playGameBtnShowResult"/>

<Button.../>
</RelativeLayout>

我的服装行也是这样:

<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:padding="4dp"
android:layout_marginBottom="4dp">

<TextView
    android:id="@+id/rowGameNumber"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="0.1"
    android:textAlignment="center"
    android:gravity="center"
    android:textSize="18sp"
    android:textStyle="bold"
    android:textColor="@color/colorLogoBlue"/>

<EditText
    android:id="@+id/rowGameEditText"
    android:text="sokak lambası"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="0.45"
    android:paddingStart="14dp"
    android:inputType="text"
    android:textColor="@color/colorButtonRegister"
    android:background="@drawable/background_edittext_game"
    android:maxLines="1"
    android:enabled="false"/>

<TextView
    android:id="@+id/rowGameCorrectAnswer"
    android:layout_width="0dp"
    android:layout_height="wrap_content"
    android:layout_weight="0.45"
    android:layout_marginStart="14dp"
    android:textStyle="bold"
    android:textSize="18sp"
    android:textAlignment="center"
    android:background="@drawable/background_text_game_correct"
    android:visibility="invisible"/>

</LinearLayout>

【问题讨论】:

  • 你也试过adjustPan吗?
  • 是的,我已经尝试过了,但这不是解决方案

标签: android android-recyclerview scroll resize


【解决方案1】:

只需将android:fitsSystemWindows="true" 从您的活动中添加到根视图,如下例所示。

<RelativeLayout
    android:id="@+id/playGameRelative"
    xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:background="#FDF2DF"
    android:fitsSystemWindows="true"
    tools:context=".PlayGameActivity">

    <!-- All your code here -->

</RelativeLayout>

【讨论】:

  • 不,还是同样的问题
  • 您的清单中的活动中是否还有android:windowSoftInputMode="adjustResize"
  • 是的,我做到了。想象一下,我有 30 行。当我单击 27. EditText 时,键盘按下 28. -29。 - 30. EditText 和我不能使用滚动到底部。我必须关闭键盘并单击 28. EditText.
猜你喜欢
  • 2013-08-23
  • 2021-01-27
  • 1970-01-01
  • 2012-07-04
  • 1970-01-01
  • 2019-03-21
  • 1970-01-01
  • 2020-10-04
相关资源
最近更新 更多