1
내 서버에서 검색 할 때 AutoCompleteTextView를 사용하고 있습니다. AutoCompleteTextView는 사용자 입력시 제안을 표시하는 방법으로 사용됩니다. 그게 다야. 내 AutoCompleteTextView는 검색에 사용되므로 필드에 SearchView를 추가하고 싶습니다. 내가 어떻게 할 수 있니? AutoCompleteTextView에 SearchView 아이콘 추가
다음
이SearchView search = new SearchView(this);
int resId = getResources().getIdentifier("search_button", "id", "android");
ImageView img = (ImageView) search.findViewById(resId);
Drawable left = img.getDrawable();
mTextSearch.setCompoundDrawables(left, null, null, null);
//mTextSearch is the AutoCompleteTextView