Change Focus to EditText Android

青春壹個敷衍的年華 提交于 2019-11-29 06:06:58

问题


I have 2 EditText's on my Activity and set the maxLength to 5.

Now I want to set the focus to editText2, if the length of 5 is reached in editView1...

I tried it with:

editView1.setOnKeyListener(new OnKeyListener() {
    @Override
    public boolean onKey(View v, int keyCode, KeyEvent event) {
        if(editView1.getText().length() == 5)
            editView2.requestFocus();
        return false;
    }
});

But it won't work..


回答1:


This works

final EditText editText1 = (EditText) findViewById(R.id.editText1);
final EditText editText2 = (EditText) findViewById(R.id.editText2);

editText1.setOnKeyListener(new OnKeyListener() {

    @Override
    public boolean onKey(View v, int keyCode, KeyEvent event) {
        if(editText1.getText().length() == 5)
            editText2.requestFocus();
        return false;
    }
});



回答2:


Marc Juschkeits post almost was perfect for me.

But in my case i had to test if the keyevent is an action up because i have a standard text in the edittext that has the same length.

final EditText editText1 = (EditText) findViewById(R.id.editText1);
final EditText editText2 = (EditText) findViewById(R.id.editText2);

editText1.setOnKeyListener(new View.OnKeyListener() {
        @Override
        public boolean onKey(View view, int i, KeyEvent keyEvent) {
            if (keyEvent.getAction() == KeyEvent.ACTION_UP) {
                if (editText1.getText().length() == 5) {
                    editText2.requestFocus();
                }
            }
            return false;
        }
    });



回答3:


Request focus not working on main thread i think. But i'm not sure. This is worked for me,

_edittext.post(new Runnable() {
      public void run() 
        {
           _edittext.requestFocus();
        }

});



回答4:


EdName.setOnKeyListener(new OnKeyListener() {

        @Override
        public boolean onKey(View v, int keyCode, KeyEvent event) {
            System.out.println("Yes Bud");

            if(EdName.length()== 5)
            {
                    EdBin.requestFocus();

            }
                return false;


        }
    });



回答5:


In the androidmanifest.xml file add the following code in activity tag:

android:windowSoftInputMode="stateHidden"


来源:https://stackoverflow.com/questions/6794234/change-focus-to-edittext-android

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!