3

这对我来说是如此令人困惑的行为,我找不到其他人与我的问题完全一致。

我正在尝试创建一个登录活动,到目前为止,用户名字段给我带来了很多麻烦。无论如何,文本字段都会保持焦点。

如果我单击外部,它不会失去焦点,我无法单击任何其他字段并且我无法关闭键盘。只有后退按钮才能退出。SingleLine我尝试使用,MaxLines和...的每个组合使其成为单行字段。Lines我还尝试使用 ImeOptions/ImeActionIdactionNext也没有效果。

SingleLine尽管设置为 true,但它顽固地保留其输入按钮,该按钮继续创建新行。

现在我的 xml 看起来像这样:

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    tools:context=".LoginActivity"
    android:orientation="vertical"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center_horizontal"
    android:paddingTop="@dimen/spacing_huge">

    <ImageView
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:src="@drawable/mini_logo"/>
    <RelativeLayout
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:padding="@dimen/spacing_huge">
        <ImageView
            android:layout_width="fill_parent"
            android:src="@drawable/orange_ring"
            android:layout_height="fill_parent"/>

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


            <EditText
                android:layout_width="wrap_content"
                android:layout_height="wrap_content"
                android:id="@+id/loginUsername"
                android:hint="Username"
                android:imeOptions="actionNext"
                android:singleLine="true"/>

            <EditText
                android:layout_width="fill_parent"
                android:layout_height="wrap_content"
                android:id="@+id/loginPassword"
                android:hint="Password"
                android:inputType="textPassword"
                android:textAlignment="center"
                android:maxLines="1"
                android:singleLine="true"
                android:imeActionId="6"/>

            <Button
                android:id="@+id/loginButton"
                android:layout_width="fill_parent"
                android:layout_height="fill_parent"
                android:text="login!"
                android:onClick="userLogin"/>

        </LinearLayout>

    </RelativeLayout>

</LinearLayout>

编辑:嗯,对不起,我忘了问这个问题。有人可以告诉我发生了什么,或者我是否误解了某些东西或如何解决这个问题?:) 我真的不知道我现在能做什么。谢谢你的帮助。

4

2 回答 2

3

结合android:maxLines="1"android:inputType="text"你工作。

于 2016-11-16T09:35:51.240 回答
0

将此行 android:singleLine="true" 添加到您的 EditText。

于 2016-11-16T09:41:46.880 回答