gpt4 book ai didi

android - actionNext(or any ImeOption) doesn't work on my Edittext, also I can't select any other text field when this particular one is selected

转载 作者:太空宇宙 更新时间:2023-11-03 13:52:27 26 4
gpt4 key购买 nike

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

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

如果我在外部单击,它不会失去焦点,我无法单击任何其他字段,也无法关闭键盘。只有后退按钮才能退出。我尝试通过使用 SingleLineMaxLinesLines 的每种组合使其成为单行字段....我还尝试使用 ImeOptions/ImeActionId actionNext 也没有效果。

尽管将 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>

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

最佳答案

android:maxLines="1"android:inputType="text" 结合使用对您有效。

关于android - actionNext(or any ImeOption) doesn't work on my Edittext, also I can't select any other text field when this particular one is selected,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/33541737/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com