Custom SearchView whole clickable in android

前端 未结 4 637
遇见更好的自我
遇见更好的自我 2021-01-01 15:18

I have a SearchView widget in my app, and I want to ask some questions about making it custom. First of all, you can start search only by clicking on search ico

4条回答
  •  被撕碎了的回忆
    2021-01-01 16:09

    Another simple way to do it by setting onActionViewExpanded().

    searchView = (SearchView)findViewById(R.id.searchView);
    searchView.setOnClickListener(new OnClickListener() {
        @Override
        public void onClick(View v) {
            searchView.onActionViewExpanded();
        }
    });
    

提交回复
热议问题