我想自定义我的自动完成文本视图的下拉列表。我已经使用 android:dropDownVerticalOffset="10dp" 来获取列表,现在我必须为列表使用特定的主题。下面是我要使用的主题。
我尝试使用 android:dropDownAnchor="",但根本没有成功。请帮助克服这个问题。
我想自定义我的自动完成文本视图的下拉列表。我已经使用 android:dropDownVerticalOffset="10dp" 来获取列表,现在我必须为列表使用特定的主题。下面是我要使用的主题。
我尝试使用 android:dropDownAnchor="",但根本没有成功。请帮助克服这个问题。
使用自定义适配器为 AutoCompleteTextView 提供自定义视图。
public class AutoCompleteAdapter extends BaseAdapter implements Filterable{
ArrayList<String> search;
public AutoCompleteAdapter() {
super();
search = new ArrayList<String>();
}
@Override
public int getCount() {
return search.size();
}
@Override
public PcsContact getItem(int index) {
return search.get(index);
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public View getView(final int position, View convertView, ViewGroup parent) {
//use ur custom view here. Inflate the view from xml.
return convertView;
}
@Override
public Filter getFilter() {
return new Filter() {
@Override
protected void publishResults(CharSequence constraint, FilterResults results) {
if (results != null && results.count > 0) {
notifyDataSetChanged();
}
}
@Override
protected FilterResults performFiltering(CharSequence constraint) {
results.values = search.clone();
results.count = search.size();
return results;
}
};
}
}
使用 Spannable String 将未键入的结果设置为粗体询问我是否需要更多帮助。