несколько раз список AutoCopmleteTextView менялся, а затем вызывался notifyDataSetChanged, но список sugguest не отображается? - PullRequest
0 голосов
/ 27 апреля 2019

Некоторое время, когда я вызываю notifyDataSetChanged, но новый список не отображается. Я уверен, что lis изменился.Может кто-нибудь мне помочь?спасибо.

Вот код:

List<SMP_CustomerEntity> list =  m_CustomerSyncService.searchCustomer(
                       faHuoRen,
                       searchPhone,
                       null,
                       CustomerSearchType.SHouHuoRen);
               Log.i(TAG,"m_TextWatcher_Consignee:TextWatcher searchCustomer.size="+list.size());
               actv_Consignee.setAdapter(m_ConsigneePersonInfoList_Adapter);
              m_ConsigneePersonInfoList_Adapter.bindList(list);
               m_ConsigneePersonInfoList_Adapter.notifyDataSetChanged();
               //bindPersonList();
...