0
我正在嘗試爲我的android應用程序實現搜索功能。所以,我正在使用AutoCompleteTextView
。但是,我正在使用自定義對象的ArrayList。如何在android中爲AutoCompleteTextView設置CustomObject的ArrayList?
這是我的班。
public class Vehicle
{
private String model,manufacturer;
}
現在,我有這些車輛對象的ArrayList。
我的問題是,如何使用這些arraylist對象設置爲適配器AutoCompleteTextView
來搜索model
?