EditText request focus

前端 未结 6 1837
你的背包
你的背包 2020-12-01 10:10

I am designing a login page as:

UserName:  .....

Password:  .....

     LoginButton

When the activity starts, I want the focus to go to \"

6条回答
  •  無奈伤痛
    2020-12-01 10:56

    Programatically:

    edittext.requestFocus();
    

    Through xml:

    
        
    
    

    Or call onClick method manually.

提交回复
热议问题