242

当我按下“下一步”时,用户 EditText 上的焦点必须移至密码。然后,从密码,它必须向右移动,依此类推。你能帮助我如何编码吗?

在此处输入图像描述

<LinearLayout
    android:id="@+id/LinearLayout01"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/username"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="User Name*" />

    <EditText
        android:id="@+id/txt_User"
        android:layout_width="290dp"
        android:layout_height="33dp"
        android:singleLine="true" />

</LinearLayout>


<LinearLayout
    android:id="@+id/LinearLayout02"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <TextView
        android:id="@+id/password"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Password*" />

    <EditText
        android:id="@+id/txt_Password"
        android:layout_width="290dp"
        android:layout_height="33dp"
        android:singleLine="true"
        android:password="true" />

    <TextView
        android:id="@+id/confirm"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:text="Password*" />

    <EditText
        android:id="@+id/txt_Confirm"
        android:layout_width="290dp"
        android:layout_height="33dp"
        android:singleLine="true"
        android:password="true" />

</LinearLayout>
4

18 回答 18

514

焦点处理

焦点移动基于一种算法,该算法在给定方向上找到最近的邻居。在极少数情况下,默认算法可能与开发人员的预期行为不匹配。

使用以下 XML 属性更改定向导航的默认行为:

android:nextFocusDown="@+id/.."  
android:nextFocusLeft="@+id/.."    
android:nextFocusRight="@+id/.."    
android:nextFocusUp="@+id/.."  

除了定向导航,您还可以使用标签导航。为此,您需要使用

android:nextFocusForward="@+id/.."

要使特定视图成为焦点,请致电

view.requestFocus()

要收听某些变化的焦点事件,请使用View.OnFocusChangeListener


键盘按钮

您可以使用它android:imeOptions来处理键盘上的那个额外按钮。

您可以在与编辑器关联的 IME 中启用其他功能,以改进与您的应用程序的集成。这里的常量对应于imeOptions定义的常量。

imeOptions 的常量包括各种动作和标志,请参阅上面的链接了解它们的值。

值示例

下一步行动

操作键执行“下一个”操作,将用户带到下一个接受文本的字段。

行动完成

操作键执行“完成”操作,通常意味着无需输入任何内容,IME 将关闭。

代码示例:

<RelativeLayout 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"
    tools:context=".MainActivity" >

    <EditText
        android:id="@+id/editText1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignParentLeft="true"
        android:layout_alignParentTop="true"
        android:layout_marginLeft="32dp"
        android:layout_marginTop="16dp"
        android:imeOptions="actionNext"
        android:maxLines="1"
        android:ems="10" >

        <requestFocus />
    </EditText>

    <EditText
        android:id="@+id/editText2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_alignLeft="@+id/editText1"
        android:layout_below="@+id/editText1"
        android:layout_marginTop="24dp"
        android:imeOptions="actionDone"
        android:maxLines="1"
        android:ems="10" />

</RelativeLayout>

如果您想收听 imeoptions 事件,请使用TextView.OnEditorActionListener.

editText.setOnEditorActionListener(new TextView.OnEditorActionListener() {
    @Override
    public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
        if (actionId == EditorInfo.IME_ACTION_SEARCH) {
            performSearch();
            return true;
        }
        return false;
    }
});

于 2013-08-01T09:25:20.817 回答
69
android:inputType="text"

应该会带来同样的效果。在点击下一个将焦点带到下一个元素之后。

android:nextFocusDown="@+id/.."

如果您不希望下一个视图获得焦点,请另外使用它

于 2013-08-01T10:24:41.583 回答
39

添加您的编辑文本

android:imeOptions="actionNext"
android:singleLine="true"

将属性添加到清单中的活动

    android:windowSoftInputMode="adjustResize|stateHidden"

在布局文件 ScrollView 中设置为根或父布局所有 ui

<?xml version="1.0" encoding="utf-8"?>
<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"
    android:orientation="vertical"
    tools:context="com.ukuya.marketplace.activity.SignInActivity">

    <ScrollView
        android:layout_width="match_parent"
        android:layout_height="wrap_content">

       <!--your items-->

    </ScrollView>

</LinearLayout>

如果您不想每次都添加,请创建样式:在 values/style.xml 中添加样式

默认/样式:

<style name="AppTheme" parent="Theme.AppCompat.Light.DarkActionBar">
        <!-- Customize your theme here. -->
        <item name="editTextStyle">@style/AppTheme.CustomEditText</item>
    </style>

<style name="AppTheme.CustomEditText"     parent="android:style/Widget.EditText">
        //...
        <item name="android:imeOptions">actionNext</item>
        <item name="android:singleLine">true</item>
    </style>
于 2016-12-11T17:44:55.637 回答
22

使用以下行

android:nextFocusDown="@+id/parentedit"

parentedit是下一个EditText要关注的 ID。

上面的行还需要下面的行。

android:inputType="text"

或者

android:inputType="number"

感谢@Alexei Khlebnikov 的建议。

于 2013-08-01T09:12:21.377 回答
12
android:inputType="textNoSuggestions"
android:imeOptions="actionNext"
android:singleLine="true"
android:nextFocusForward="@+id/.."

添加额外字段

android:inputType="textNoSuggestions"

在我的情况下工作!

于 2017-02-21T06:43:49.107 回答
9
<AutoCompleteTextView
                android:id="@+id/email"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                android:drawableLeft="@drawable/user"
                android:hint="@string/username"
                android:inputType="text"
                android:maxLines="1"
                android:imeOptions="actionNext"
                android:singleLine="true" />

这三行很神奇

            android:maxLines="1"
            android:imeOptions="actionNext"
            android:singleLine="true"
于 2018-05-21T05:05:56.900 回答
9

在您的 onEditorAction 处理程序中,请记住,您必须返回一个布尔值,指示您是否正在处理操作 (true) 或者您是否应用了一些逻辑并想要正常行为 (false),如下例所示:

EditText te = ...
te.setOnEditorActionListener(new OnEditorActionListener() {
    @Override
    public boolean onEditorAction(TextView v, int actionId, KeyEvent event){
        if (actionId == EditorInfo.IME_ACTION_NEXT) {
            // Some logic here.
            return true; // Focus will do whatever you put in the logic.
        }
        return false;  // Focus will change according to the actionId
    }
});

我在执行逻辑后返回 true 时发现了这一点,因为焦点没有移动。

于 2016-01-30T16:13:45.050 回答
5

在 Kotlin 中,我使用了 Bellow 之类的......

  1. xml:

    <EditText
      android:id="@+id/et_amount"
      android:layout_width="match_parent"
      android:layout_height="wrap_content"
      android:imeOptions="actionNext"
      android:inputType="number"
      android:singleLine="true" />
    
  2. 在科特林:

    et_amount.setOnEditorActionListener { v, actionId, event ->
    
        if (actionId == EditorInfo.IME_ACTION_NEXT) {
            // do some code
            true
        } else {
            false
        }
    }
    
于 2020-05-19T10:51:17.183 回答
5

简单的方法,当您一个一个只有几个字段时:

需要设置

android:maxLines="1"

android:imeOptions="actionNext"

android:inputType="" <-设置你的文本类型,在其他情况下它将是多行并阻止下一个

样本:

<EditText android:layout_width="match_parent"
              android:layout_height="wrap_content"
              android:textSize="@dimen/text_large"
              android:maxLines="1"
              android:inputType="textEmailAddress"
              android:imeOptions="actionNext"
              android:layout_marginLeft="@dimen/element_margin_large"
              android:layout_marginRight="@dimen/element_margin_large"
              android:layout_marginTop="0dp"/>
于 2019-06-25T17:29:07.547 回答
4

在某些情况下,您可能需要手动将焦点移动到下一个字段:

focusSearch(FOCUS_DOWN).requestFocus();

例如,如果您有一个在单击时打开日期选择器的文本字段,并且您希望在用户选择日期并且选择器关闭后焦点自动移动到下一个输入字段,则您可能需要这样做。没有办法在 XML 中处理这个,它必须以编程方式完成。

于 2018-09-11T13:53:34.277 回答
4

尝试对视图中的每个 editText 使用android:imeOptions="actionNext"标记,当您单击 softKeyboard 的 Next 时,它将自动聚焦到下一个 edittext。

于 2019-10-30T05:44:34.827 回答
4

只需使用以下代码,它就可以正常工作并为每个edittext使用inputType,下一个按钮将出现在键盘中。

android:inputType="text" or android:inputType="number" etc
于 2017-11-08T17:41:22.087 回答
2

将 inputType 添加到 edittext 并在输入时将进入下一个 edittext

android:inputType="text"
android:inputType="textEmailAddress"
android:inputType="textPassword" 

还有很多。

inputType=textMultiLine 不进入下一个edittext

于 2018-05-15T18:57:29.550 回答
1
<?xml version="1.0" encoding="utf-8"?>

<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/ScrollView01"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:fillViewport="true"
android:scrollbars="vertical" >

<RelativeLayout
android:layout_width="match_parent"
android:layout_height="666dp"
android:background="#1500FFe5"
android:paddingBottom="@dimen/activity_vertical_margin"
android:paddingLeft="@dimen/activity_horizontal_margin"
android:paddingRight="@dimen/activity_horizontal_margin"
android:paddingTop="@dimen/activity_vertical_margin" >
<TextView
    android:id="@+id/TextView02"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/editGrWt"
    android:layout_marginTop="14dp"
    android:layout_toLeftOf="@+id/textView3"
    android:ems="6"
    android:text="    Diamond :"
    android:textColor="@color/background_material_dark"
    android:textSize="15sp" />
  <EditText
    android:id="@+id/editDWt"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBottom="@+id/TextView02"
    android:layout_alignLeft="@+id/editGrWt"
    android:background="@color/bright_foreground_inverse_material_light"
    android:ems="4"
    android:hint="Weight"
    android:inputType="numberDecimal"
    android:nextFocusLeft="@+id/editDRate"
    android:selectAllOnFocus="true"
    android:imeOptions="actionNext"

    />
 <requestFocus />


<TextView
    android:id="@+id/TextView03"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignLeft="@+id/TextView02"
    android:layout_below="@+id/TextView02"
    android:layout_marginTop="14dp"
    android:ems="6"
    android:text="    Diamond :"
    android:textColor="@color/background_material_dark"
    android:textSize="15sp" />

<EditText
    android:id="@+id/editDWt1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBaseline="@+id/TextView03"
    android:layout_alignBottom="@+id/TextView03"
    android:layout_alignLeft="@+id/editDWt"
    android:background="@color/bright_foreground_inverse_material_light"
    android:ems="4"
    android:hint="Weight"
    android:inputType="numberDecimal"
    android:text="0"
    android:selectAllOnFocus="true"
    android:imeOptions="actionNext"/>
 <requestFocus />

<TextView
    android:id="@+id/TextView04"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_below="@+id/editDWt1"
    android:layout_marginTop="14dp"
    android:layout_toLeftOf="@+id/textView3"
    android:ems="6"
    android:text="         Stone :"
    android:textColor="@color/background_material_dark"
    android:textSize="15sp" />

<EditText
    android:id="@+id/editStWt1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignBaseline="@+id/TextView04"
    android:layout_alignBottom="@+id/TextView04"
    android:layout_alignLeft="@+id/editDWt1"
    android:background="@color/bright_foreground_inverse_material_light"
    android:ems="4"
    android:hint="Weight"
    android:inputType="numberDecimal"
    android:nextFocusForward="@+id/editStRate1"
    android:imeOptions="actionNext" />
 <requestFocus />
  <TextView
     android:id="@+id/TextView05"
     android:layout_width="wrap_content"
     android:layout_height="wrap_content"
     android:layout_alignLeft="@+id/TextView04"
     android:layout_below="@+id/editStRate1"
     android:layout_marginTop="14dp"
     android:ems="6"
     android:text="         Stone :"
     android:textColor="@color/background_material_dark"
     android:textSize="15sp" />


</RelativeLayout>

</ScrollView>
于 2015-05-25T15:14:01.010 回答
1

如果您想使用多行EditText,请imeOptions尝试:

android:inputType="textImeMultiLine"
于 2017-09-27T18:42:29.280 回答
1

简单的方法:

  • 自动将光标移动到下一个编辑文本
  • 如果 edittext 是最后一个输入 -> 隐藏键盘

将此添加到 .xml 文件中的 edittext 字段

android:inputType="textCapWords"
于 2020-05-07T04:28:27.013 回答
0
Inside Edittext just arrange like this


<EditText
    android:id="@+id/editStWt1"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:imeOptions="actionNext" //now its going to rightside/next field automatically
    ..........
    .......

</EditText>
于 2018-01-05T09:24:08.987 回答
0

如果您在滚动视图中有元素,那么您也可以将此问题解决为:

<com.google.android.material.textfield.TextInputEditText
                android:id="@+id/ed_password"
                android:inputType="textPassword"
                android:focusable="true"
                android:imeOptions="actionNext"
                android:nextFocusDown="@id/ed_confirmPassword" />

在您的活动中:

edPassword.setOnEditorActionListener(new EditText.OnEditorActionListener() {
        @Override
        public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
            if (actionId == EditorInfo.IME_ACTION_NEXT) {
                focusOnView(scroll,edConfirmPassword);
                return true;
            }
            return false;
        }
    });

public void focusOnView(ScrollView scrollView, EditText viewToScrollTo){
    scrollView.post(new Runnable() {
        @Override
        public void run() {
            scrollView.smoothScrollTo(0, viewToScrollTo.getBottom());
            viewToScrollTo.requestFocus();
        }
    });
}
于 2020-01-30T09:03:56.300 回答