gpt4 book ai didi

android - requestFocus 跳过下一个 EditText

转载 作者:塔克拉玛干 更新时间:2023-11-02 19:19:11 27 4
gpt4 key购买 nike

我在控制对焦方面遇到了一些问题。我的接口(interface)定义如下:

来源( radio 组/可选)目的地(编辑文本)数量(编辑文本)转移(按钮)

我正在将“源代码”的可见性更改为我的代码。当我不显示它的时候,焦点会自动转到“数量”,我希望它是“目的地”。我不知道我错过了什么。我怀疑这可能是一个 Android 错误,我不知道。有没有人知道如何解决这个问题?

谢谢

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent">

<RadioGroup android:id="@+id/source"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="vertical"
android:visibility="gone">
<RadioButton android:id="@+id/default"
android:checked="false"
android:text="@string/default"/>
</RadioGroup>

<TableLayout
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:stretchColumns="1">
<TableRow>
<TextView
android:text="@string/destination"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="16sp"
android:textColor="#ffffff"
android:paddingRight="10sp"
android:layout_weight="1"/>

<EditText android:id="@+id/destination"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:singleLine="true"><requestFocus/></EditText>
</TableRow>

<TableRow>
<TextView
android:text="@string/quantity"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="16sp"
android:textColor="#ffffff"
android:paddingRight="10sp"
android:layout_weight="1"/>

<EditText android:id="@+id/quantity"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:singleLine="true"/>
</TableRow>
</TableLayout>

<Button android:id="@+id/transfer"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="@string/transfer"/>
</LinearLayout>

最佳答案

这似乎是一个已知问题。以下关于 Android 项目的 google code 的帖子描述了同样的问题。

Issue 2705: Setting requestFocus on EditText prevents soft keyboard from opening

您可以尝试在您的代码中而不是在布局中设置焦点。

关于android - requestFocus 跳过下一个 EditText,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4211851/

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