繁体   English   中英

当键盘打开底部EditText不显示时的Android

[英]Android When Keyboard Open Bottom EditText Not Showing

我在Costum行中使用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>

我的Costum Row这样:

<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>

只需将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>

暂无
暂无

声明:本站的技术帖子网页,遵循CC BY-SA 4.0协议,如果您需要转载,请注明本站网址或者原文地址。任何问题请咨询:yoyou2525@163.com.

 
粤ICP备18138465号  © 2020-2024 STACKOOM.COM