gpt4 book ai didi

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

转载 作者:塔克拉玛干 更新时间:2023-11-02 08:44:50 24 4
gpt4 key购买 nike

我有一个 DialogFragment,在它的布局中我有一个 EditText 和一个 ListView。 ListView 主要显示联系人列表(最初此列表有 0 个项目)。当 edittext 的值更新时,我用在 EditText 中输入了 text 的联系人填充列表。

EditText 上,我使用 addTextChangedListener 在用户键入联系人姓名或电子邮件地址时使用所需联系人更新列表。

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

为了更好的理解,下面是一些代码。

自定义对话框 fragment .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();
}

我的假设是列表适配器的列表已正确更新,但由于某种原因,直到隐藏软键盘布局才反射(reflect)新的更改。

问题:

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

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

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

  1. 以下是显示对话框 fragment 且未在编辑文本中键入任何文本的情况。 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

(请不要介意重叠的联系人姓名和电子邮件,仍然需要修复布局 :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;
}
}

最佳答案

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

解决方案:在 EditText 中的每个新文本之后创建新的适配器(这是一个非常糟糕的方法),或者在 EmailContactAdapter 中创建方法来替换项目 - 在你的情况下 联系人字段。

关于android - ListView 在隐藏键盘之前不会更新,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/30217317/

24 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com