Event for Handling the Focus of the EditText

后端 未结 4 1104
时光取名叫无心
时光取名叫无心 2020-12-02 05:53

Can anyone suggest me any event related to the focus of the EditText? My application contains a EditText, which accepts a URL in it.

Now m

4条回答
  •  臣服心动
    2020-12-02 06:12

    when in kotlin it will look like this :

    editText.setOnFocusChangeListener { view, hasFocus ->
            if (hasFocus) toast("focused") else toast("focuse lose")
        }
    

提交回复
热议问题