How to set focus on a view when a layout is created and displayed?

后端 未结 15 1169
Happy的楠姐
Happy的楠姐 2020-12-02 15:07

Currently, I have a layout which contains a Button, a TextView and an EditText. When the layout is displayed, the focus will be automa

15条回答
  •  离开以前
    2020-12-02 15:32

    Set these lines to OnResume as well and make sure if focusableInTouch is set to true while you initialize your controls

    .requestFocus();
    
    .requestFocusFromTouch();
    

提交回复
热议问题