45

我正在尝试获取 Android 应用程序的登录屏幕,到目前为止,这是我的代码:

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent">


    <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:orientation="vertical">

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

            <requestFocus />
        </EditText>

        <EditText
            android:id="@+id/password"
            android:layout_width="match_parent"
            android:layout_height="wrap_content"
            android:hint="Password"
            android:inputType="textPassword"
            android:singleLine="true"
            android:imeOptions="actionDone"  />

        <Button
            android:id="@+id/buttonLaunchTriage"
            android:layout_width="match_parent"
            android:layout_height="0dp"
            android:layout_weight="1"
            android:text="@string/login" />
    </LinearLayout>



</RelativeLayout>

当我尝试运行它时,键盘显示正确的键,但是当我在输入密码后尝试按完成时,没有任何反应。我正在使用它来处理按钮按下:

private void setupLoginButton() {
    Button launchButton = (Button) findViewById(R.id.buttonLaunchTriage);
    launchButton.setOnClickListener(new View.OnClickListener() {

        @Override
        public void onClick(View v) {
            EditText username = (EditText) findViewById(R.id.patient_start_userName_value);
            EditText password = (EditText) findViewById(R.id.patient_start_password_value);

            try {
                if(TriageApplicationMain.validateUser(username.getText().toString(),password.getText().toString(),getApplicationContext()))
                {
                Toast.makeText(StartActivity.this,
                        "Launching Triage Application", Toast.LENGTH_SHORT)
                        .show();
                startActivity(new Intent(StartActivity.this, MainActivity.class));
                }

                else
                     {
                    AlertDialog.Builder alertDialogBuilder = new AlertDialog.Builder(
                            StartActivity.this);


                        // set dialog message
                        alertDialogBuilder
                            .setMessage("Incorrect Credentials")
                            .setCancelable(false)
                            .setPositiveButton("OK",new DialogInterface.OnClickListener() {
                                public void onClick(DialogInterface dialog,int id) {
                                    // if this button is clicked, close
                                    // current activity
                                dialog.cancel();    
                                }
                              });


                            // create alert dialog
                            AlertDialog alertDialog = alertDialogBuilder.create();

                            // show it
                            alertDialog.show();

                    }
                }


            catch (IOException e) {
                // TODO Auto-generated catch block
                e.printStackTrace();
            }
        }
    });

}

我知道这是很多代码,但是如果有人可以在这里帮助我,那就太好了。这是一个学校项目。

PS:在发布之前我已经通过谷歌搜索了一个小时,所以请不要批评没有这样做。如果您发现有用的链接,请分享。

4

8 回答 8

104

只需添加android:inputType="..."到您的 EditText。它会工作的!:)

于 2017-01-08T06:50:38.643 回答
46

您应该为 EditText 设置 OnEditorActionListener 以实现当用户单击键盘中的“完成”时要执行的操作。

因此,您需要编写一些代码,例如:

password.setOnEditorActionListener(new OnEditorActionListener() {
    @Override
    public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
        if (actionId == EditorInfo.IME_ACTION_DONE) {
            // Do whatever you want here
            return true;
        }
        return false;
    }
});

请参阅android 开发者网站上的教程

于 2014-11-19T01:38:47.127 回答
25

倩倩是对的。您的代码仅侦听按钮单击事件,而不侦听 EditorAction 事件。

我想补充一点,一些电话供应商可能无法正确实施 DONE 操作。例如,我已经用联想 A889 进行了测试,EditorInfo.IME_ACTION_DONE当你按下完成时,手机从不发送,它总是发送EditorInfo.IME_ACTION_UNSPECIFIED,所以我实际上最终得到了类似的东西

myEditText.setOnEditorActionListener(new EditText.OnEditorActionListener() {
  @Override
  public boolean onEditorAction(final TextView v, final int actionId, final KeyEvent event)
  {
    boolean handled=false;

    // Some phones disregard the IME setting option in the xml, instead
    // they send IME_ACTION_UNSPECIFIED so we need to catch that
    if(EditorInfo.IME_ACTION_DONE==actionId || EditorInfo.IME_ACTION_UNSPECIFIED==actionId)
    {
      // do things here

      handled=true;
    }

    return handled;
  }
});

还要注意“已处理”标志(Qianqian 没有解释那部分)。可能是其他更高级别的 OnEditorActionListener 正在侦听不同类型的事件。如果您的方法返回 false,则意味着您没有处理此事件,它将被传递给其他人。如果您返回 true,则表示您处理/使用了它,并且不会将其传递给其他人。

于 2014-11-19T02:10:28.320 回答
10

android:inputType="Yours"然后使用

android:lines="1"
android:imeOptions="actionDone"
于 2017-04-05T07:11:20.207 回答
5

在尝试了很多事情之后,这对我有用:

    android:maxLines="1"
    android:inputType="text"
    android:imeOptions="actionDone"
于 2017-11-20T15:51:25.957 回答
3

只需将其添加到您的属性中:

android:inputType="textPassword"

文档:这里

于 2018-05-07T16:52:02.693 回答
1

您应该为 EditText 设置 OnEditorActionListener 以实现当用户单击键盘中的“完成”时要执行的操作。

于 2017-05-17T11:14:38.957 回答
1

只是添加到 Qianqian & peedee 答案:

这是任何输入事件的操作 ID 为 EditorInfo.IME_ACTION_UNSPECIFIED (0) 的原因。

actionId int:动作的标识符。这将是您提供的标识符,或者 EditorInfo#IME_NULL 如果由于按下回车键而被调用。

来源: Android 文档

所以处理输入键事件的正确方法是:

@Override
public boolean onEditorAction(TextView v, int actionId, KeyEvent event) {
    if (actionId == EditorInfo.IME_NULL) {
        // Handle return key here
        return true;
    }
    return false;
}
于 2020-03-13T14:39:04.503 回答