在隐藏键盘之前,ListView不会更新

时间:2015-05-13 14:06:47

标签: android android-listview android-dialogfragment

我有一个DialogFragment,在其布局中我有一个EditText和一个ListView。 Listview基本上显示了联系人列表(最初这个列表有0个项目)。更新edittext的值后,我会使用在text中输入EditText的联系人填充列表。

EditText上,当用户在联系人的姓名或电子邮件地址中输入时,我使用addTextChangedListener更新了包含所需联系人的列表。

我面临的一个奇怪的问题是,只有当我按下后退按钮以在键入后隐藏键盘时,列表(或可能是布局)才会更新。只要软键盘显示,列表就不会更新(除非是第一次将项目添加到空列表中)。

以下是一些可以更好理解的代码。

CustomDialogFragment.java

(在onCreateView中):

    // Set list adapter for contacts list
    contactsList = (ListView) shareView.findViewById(R.id.contactList);
    emailContactAdapter = new EmailContactAdapter(getActivity(), emailContacts, shareFragment);
    contactsList.setAdapter(emailContactAdapter);

    // Implement Phone-book contact share
    sendToInput = (EditText) shareView.findViewById(R.id.contact_name);
    sendToInput.addTextChangedListener(onContactNameSearch);
onContactNameSearch(TextWatcher)中的

public TextWatcher onContactNameSearch = new TextWatcher() {

    private generics commonMethods = new generics();

    @Override
    public void beforeTextChanged(CharSequence s, int start, int count, int after) {
        emailContacts.clear();
    }

    @Override
    public void onTextChanged(CharSequence s, int start, int before, int count) {

    }

    @Override
    public void afterTextChanged(Editable s) {
        Log.d("DEBUG::REACH", "After Text Changed called");
        String textValue = s.toString();

        // Show or hide the share apps list based on user input
        // and whether or not the list is already showing or not
        if (textValue.equals("")) {
            Log.d("DEBUG::REACH", "TEXT value is empty");
            showAppList();
            emailContacts.clear();
        } else {

            Log.d("DEBUG::REACH", "TEXT has value");

            // Hide app list if visible
            if (isAppListShowing()) hideAppList();

            // Get the email contacts list based on the user query
            emailContacts.addAll(commonMethods.getEmailContacts(appContext, textValue));
        }

        adapter.notifyDataSetChanged();
    }

我的假设是列表适配器的列表已正确更新,但由于某些原因,在隐藏软键盘之前布局不会反映新的更改。

问题:

  • 之前是否有人遇到类似的问题(谷歌搜索时无法找到任何资源:/)?
  • 为什么会这样?
  • 官方文档中是否有与此相关的内容?
  • 解决此问题的最佳方法是什么?

PS:afterTextChanged方法中的代码以前是onTextChanged方法,我遇到了同样的问题。

更新(添加了屏幕截图以便更好地理解)

  1. 以下是显示对话框片段并且在edittext中未输入任何文本的情况。 This is when the dialog fragment is shown

  2. 现在当我输入“A”并填充列表时。 enter image description here

  3. 我添加了几个字母,但列表没有更新。我添加了字母“mit”所以现在查询变为“Amit”但列表中没有变化。 enter image description here

  4. 现在,当我按下设备上的硬件后退按钮以隐藏键盘时。键盘被隐藏,列表也会更新。 enter image description here

  5. (请注意重叠的联系人姓名和电子邮件,仍然需要修复布局:P)

    UPDATE2 (添加EmailContactAdapter代码)

    以下是EmailContactAdapter类

    public class EmailContactAdapter extends BaseAdapter {
    
    private Activity activity;
    private ArrayList<EmailContact> contacts;
    private ProductShareFragment fragment;
    private LayoutInflater inflater;
    
    /**
     * Constructor
     */
    public EmailContactAdapter(Activity activity, ArrayList<EmailContact> contacts, ProductShareFragment fragment) {
        this.activity = activity;
        this.contacts = contacts;
        this.fragment = fragment;
    }
    
    @Override
    public int getCount() {
        return contacts.size();
    }
    
    @Override
    public Object getItem(int position) {
        return contacts.get(position);
    }
    
    @Override
    public long getItemId(int position) {
        return position;
    }
    
    @Override
    public View getView(int position, View convertView, ViewGroup parent) {
        if (inflater == null) {
            inflater = (LayoutInflater) activity.getSystemService(Context.LAYOUT_INFLATER_SERVICE);
        }
    
        if (convertView == null) {
            convertView = inflater.inflate(R.layout.email_contact_list_row, null);
        }
    
        EmailContact contact = contacts.get(position);
        ImageView contactImage = (ImageView) convertView.findViewById(R.id.email_contact_image);
        TextView contactName = (TextView) convertView.findViewById(R.id.email_contact_name);
        TextView contactEmail = (TextView) convertView.findViewById(R.id.email_contact_email);
    
        // contactImage.setImageBitmap(contact.getImage());
        contactName.setText(contact.getName());
        contactEmail.setText(contact.getEmail());
    
        return convertView;
    }
    }
    

3 个答案:

答案 0 :(得分:0)

您正尝试更改emailContacts更改可见列表,但适配器仍包含旧列表数据。

解决方案:在EditText中的每个新文字创建新适配器(非常糟糕的方式)之后,或在EmailContactAdapter中创建方法以替换项目 - 在您的案例contacts字段中。< / p>

答案 1 :(得分:0)

在下面的代码中,您将使用commonMethods.getEmailContacts

的结果填充列表
// Get the email contacts list based on the user query
emailContacts.addAll(commonMethods.getEmailContacts(appContext, textValue));

当然你首先需要做emailContacts.Clear(),否则列表不会改变?

答案 2 :(得分:0)

尝试删除所有 emailContacts.clear(); 。然后在 emailContacts.addAll(commonMethods.getEmailContacts(appContext,textValue)); 之前添加 emailContacts.clear(); 。您将为您键入的每个字母添加列表。