我对编辑文本的行为有问题。事情是这样的:
当我点击edittext时,软键盘就会出现,我仍然可以看到edittext(所以我可以看到我在写什么)。但是,如果我第一次单击按钮,或者隐藏软键盘并在edittext中再次单击,则会出现软键盘,但edittext位于软键盘的下方。
我试过好几种方法。我的应用程序是全屏的,但我找不到我设置它的位置,因为我没有使用自定义主题,在我的活动中,我只有:

<activity
        android:name=".Textinput"
        android:label="@string/title_activity_textinput"
        android:screenOrientation="portrait"
        android:theme="@style/AppTheme.NoActionBar"
        android:windowSoftInputMode="adjustResize|stateHidden"/>

活动的.xml为:
<FrameLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<LinearLayout 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"
app:layout_behavior="@string/appbar_scrolling_view_behavior"
tools:context="com.jesusortega.esloganquizz.Textinput"
tools:showIn="@layout/activity_textinput"
android:background="#171c22"
android:gravity="center_vertical"
android:orientation="vertical"
>
    <ImageView
        android:id="@+id/image"
        android:layout_width="220dp"
        android:layout_height="220dp"
        android:layout_gravity="center_horizontal"
        android:layout_marginBottom="@dimen/activity_vertical_margin"
        android:layout_marginLeft="@dimen/activity_horizontal_margin"
        android:layout_marginRight="@dimen/activity_horizontal_margin"
        android:layout_marginTop="@dimen/activity_vertical_margin"/>

    <TextView
        android:id="@+id/textview1"
        android:layout_width="340dp"
        android:layout_height="wrap_content"
        android:background="@drawable/shadowbuttonblue"
        android:textAllCaps="false"
        android:textColor="#ffffff"
        android:textSize="18sp"
        android:gravity="left|center_vertical"
        android:layout_gravity="end"
        android:paddingEnd="50dp"
        android:paddingRight="50dp"
        android:paddingLeft="20dp"
        android:paddingStart="20dp"
        android:paddingBottom="10dp"
        android:paddingTop="10dp"
        android:layout_marginBottom="8dp"
        android:layout_marginRight="-30dp"
        />
    <Button
        android:id="@+id/button1"
        android:layout_width="340dp"
        android:layout_height="40dp"
        android:background="@drawable/shadowbuttongreen"
        android:text="@string/string13"
        android:textAllCaps="false"
        android:textColor="#ffffff"
        android:textSize="18sp"
        android:gravity="right|center_vertical"
        android:layout_gravity="left"
        android:paddingEnd="20dp"
        android:paddingRight="20dp"
        android:paddingBottom="10dp"
        android:paddingTop="10dp"
        android:paddingLeft="50dp"
        android:layout_marginBottom="8dp"
        android:layout_marginLeft="-30dp"
        android:onClick="function1"
        />
    <Button
        android:id="@+id/button2"
        android:layout_width="340dp"
        android:layout_height="40dp"
        android:background="@drawable/shadowbuttonyellow"
        android:text="@string/string14"
        android:textAllCaps="false"
        android:textColor="#ffffff"
        android:textSize="18sp"
        android:gravity="left|center_vertical"
        android:layout_gravity="end"
        android:paddingLeft="20dp"
        android:paddingBottom="10dp"
        android:paddingTop="10dp"
        android:layout_marginBottom="8dp"
        android:layout_marginRight="-30dp"
        android:onClick="function1"
        />
    <EditText
        android:id="@+id/editText1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:hint="@string/string15"
        android:textColorHint="#ffffff"
        android:padding="10dp"
        android:layout_marginRight="10dp"
        android:layout_marginLeft="10dp"
        android:layout_marginBottom="8dp"
        android:background="@drawable/introducirtexto"
        android:gravity="center_horizontal"
        android:layout_gravity="center_horizontal"
        android:textSize="18sp"
        android:textColor="#ffffff"
        android:textCursorDrawable="@null"
        android:imeOptions="actionGo"
        android:singleLine="true"/>
    <Button
        android:id="@+id/button3"
        android:layout_width="340dp"
        android:layout_height="40dp"
        android:background="@drawable/shadowbuttonred"
        android:text="@string/string16"
        android:textAllCaps="false"
        android:textColor="#ffffff"
        android:textSize="18sp"
        android:gravity="right|center_vertical"
        android:layout_gravity="left"
        android:paddingEnd="20dp"
        android:paddingRight="20dp"
        android:paddingBottom="10dp"
        android:paddingTop="10dp"
        android:layout_marginLeft="-30dp"
        android:onClick="check"
        />
</LinearLayout>
<RelativeLayout
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_gravity="top|right"
    android:layout_margin="10dp">
    <Button
        android:id="@+id/esquina"
        android:layout_width="70dp"
        android:layout_height="40dp"
        android:drawableLeft="@drawable/small_coin"
        android:background="@drawable/shadowbuttonblue"
        android:padding="5dp"
        android:textAllCaps="false"
        android:textColor="#ffffff"
        android:textSize="22sp"
        android:onClick="coins"/>
</RelativeLayout>

我知道AdjustResize在全屏中不起作用,但这对我来说并不重要,我只想每次单击它时都能看到EditText。
谢谢。
编辑:
这是我的毕业典礼:
apply plugin: 'com.android.application'
android {
compileSdkVersion 23
buildToolsVersion "23.0.2"

defaultConfig {
    applicationId "com.untoj.app"
    minSdkVersion 14
    targetSdkVersion 23
    versionCode 1
    versionName "1.0"
}
buildTypes {
    release {
        minifyEnabled false
        proguardFiles getDefaultProguardFile('proguard-android.txt'), 'proguard-rules.pro'
    }
}
}

dependencies {
compile fileTree(include: ['*.jar'], dir: 'libs')
testCompile 'junit:junit:4.12'
compile 'com.android.support:appcompat-v7:23.1.1'
compile 'com.android.support:design:23.1.1'
compile 'com.android.support:support-v4:23.1.1'
}

最佳答案

在活动的androidmanifest.xml中添加:

android:windowSoftInputMode="adjustPan|adjustResize"

根据您希望实现的行为,您还可以使用:
android:windowSoftInputMode="adjustResize"

以下是两个选项的说明:
“调整大小”-活动的主窗口总是调整大小,以便为屏幕上的软键盘腾出空间。
“AdjustPan”-活动的主窗口没有调整大小以为软键盘腾出空间。相反,窗口的内容是自动平移的,这样当前的焦点永远不会被键盘遮挡,用户总是可以看到他们正在键入的内容。这通常比调整大小更不可取,因为用户可能需要关闭软键盘才能进入窗口的模糊部分并与之交互。

关于android - EditText中的怪异行为,我们在Stack Overflow上找到一个类似的问题:https://stackoverflow.com/questions/36199633/

10-14 10:21