Set search hint dynamically

后端 未结 7 1544
悲哀的现实
悲哀的现实 2021-02-08 04:38

Does anybody knows how to set android search dialog hint dynamically? T have try to do something like:




        
7条回答
  •  没有蜡笔的小新
    2021-02-08 04:44

    It looks like you're almost there.

    The SearchDialog source does this to get the auto complete editable.

    mSearchAutoComplete = (SearchAutoComplete) findViewById(com.android.internal.R.id.search_src_text);
    

    (note that the SearchAutoComplete class is a subclass of AutoCompleteTextView)

提交回复
热议问题