Android : clear focus on edittext when activity starts

前端 未结 8 971
伪装坚强ぢ
伪装坚强ぢ 2021-01-02 14:30

I\'ve some settings page in my app. Once the activity gets starts directly it focus to edittext and i used following code to clear foucs.



        
8条回答
  •  南笙
    南笙 (楼主)
    2021-01-02 15:02

    If Come back from other activity edittext get focused. 
    

    put these line onStart() or on onReusme()

      RelativeLayout focuslayout = (RelativeLayout) findViewById(R.id.RequestFocusLayout);
     focuslayout.requestFocus();
    

提交回复
热议问题