2

私がやろうとしていることについて簡単なレビューをします。AutoCompleteTextViewのドロップダウンを自分のオブジェクトで埋めたいのです。これらのオブジェクトには3つの文字列が含まれています。list_item_viewには、2つの文字列が含まれている必要があります。このリストはフィルタリング可能である必要があります。

今まで少しコードを書きました。これまでに行ったことは次のとおりです。

私のCustomAdapterは次のようになります。

public class CustomerAdapter : ArrayAdapter<CustomerSingle>, IFilterable
{
    private ws_test.Test ws=null;
    public static List<CustomerSingle> _contactList;
    private Activity _activity;
    private CustomerAdapterFilter filter = null;

    public CustomerAdapter(Activity activity, Context context,int resourceId)//List<CustomerSingle> assets)
    :base(context,resourceId)//,assets)
    {
        _activity = activity;
        ws=new ws_test.Test();
        _contactList = new List<CustomerSingle>();
    }

    public static List<CustomerSingle> getCustomerList()
    {
        return _contactList;
    }

    public void Add(CustomerSingle item)
    {
         _contactList.Add(item);
    }

    public override int Count
    {
        get { return _contactList.Count; }
    }

    public override long GetItemId(int position)
    {
        return _contactList[position].id;
    }

    public override View GetView(int position, View convertView, ViewGroup parent)
    {
        var view = convertView ?? _activity.LayoutInflater.Inflate(Resource.Layout.details, parent, false);
        var contactName = view.FindViewById<TextView>(Resource.Id.Name);
        var contactAddress = view.FindViewById<TextView>(Resource.Id.Address);
        contactName.Text = _contactList[position].name;// +"\n" + _contactList[position].address;
        contactAddress.Text = _contactList[position].address;

        return view;
    }

    public override Filter Filter
    {
        get
        {
            return new CustomerAdapterFilter();
        }
    }

    public override void NotifyDataSetChanged()
    {
        base.NotifyDataSetChanged();
    }

    public override void NotifyDataSetInvalidated()
    {
        base.NotifyDataSetInvalidated();
    }
}

CustomerSingleは次のようになります。

public class CustomerSingle
{
    public string no { get; set; }
    public string name { get; set; }
    public string address { get; set; }
    public int id { get; set; }

    public CustomerSingle(string no, string name, string address, int id)
    {
        this.address = address;
        this.name = name;
        this.no = no;
        this.id = id;
    }
}

さて、ここでやろうとしている独自のフィルターが必要です。

public class CustomerAdapterFilter:Filter
{
    protected object mLock = new object();
    protected List<CustomerSingle> mOriginalValues = null;

    protected override FilterResults PerformFiltering(Java.Lang.ICharSequence prefix)
    {

        FilterResults results = new FilterResults();
        if (mOriginalValues == null) {
            lock(mLock) {
                mOriginalValues = new List<CustomerSingle>(CustomerAdapter._contactList);

            }
        }

        if (prefix == null || prefix.Length() == 0) {
            lock (mLock) {
                List<CustomerSingle> list = new List<CustomerSingle>(mOriginalValues);
                IntPtr listptr = list.
                results.Values = list;
                results.Count = list.Count;
            }
        } else {
            String prefixString = prefix.ToString().ToLowerInvariant();

            List<CustomerSingle> values = mOriginalValues;
            int count = values.Count;

            List<CustomerSingle> newValues = new List<CustomerSingle>(count);

            for (int i = 0; i < count; i++) {
                CustomerSingle value = values.ElementAt(i);
                String valueText = value.ToString().ToLowerInvariant();

                // First match against the whole, non-splitted value
                if (valueText.StartsWith(prefixString)) {
                    newValues.Add(value);
                } else {
                    String[] words = valueText.Split(' ');
                    int wordCount = words.Length;

                    for (int k = 0; k < wordCount; k++) {
                        if (words[k].StartsWith(prefixString)) {
                            newValues.Add(value);
                            break;
                        }
                    }
                }
            }

            results.Values = (Object) newValues;
            results.Count = newValues.Count;
        }

        return results;
    }

    protected override void PublishResults(Java.Lang.ICharSequence constraint, Filter.FilterResults results)
    {
        //noinspection unchecked
        var mObjects = results.Values;
        if (results.Count > 0)
        {
            NotifyDataSetChanged();
        }
        else
        {
            notifyDataSetInvalidated();
        }
    }
}

私の問題は、Java.Lang.ObjectからCustomerSingleに変換できないことです...誰かがアイデアを持っていますか?

ありがとうございました!

更新:フィルターでJavaListに変更し、CustomerSingleでJava.Lang.Objectへの拡張を行いました

4

1 に答える 1

2

CustomerSingleクラスをJava.Lang.Objectのサブクラスにします。

public class CustomerSingle : Java.Lang.Object

アップデート:

私の推測では、この行は次のとおりです。

results.Values = (Object) newValues;

Java.Lang.ObjectではなくSystem.Objectに変換しようとしています。代わりに(Java.Lang.Object)を試してください。

于 2012-04-12T14:31:22.857 に答える