我有一个列表视图,当它被点击时,它必须是不可见的。它工作得非常好但是当屏幕上下滚动时,再次出现那些不可见的屏幕。有没有人知道如何解决这些问题。
这是我的ListItemClick
的代码片段 protected void onListItemClick(ListView l, View v, int position, long id) {
super.onListItemClick(l, v, position, id);
v.setVisibility(View.GONE);
Object o = this.getListAdapter().getItem(position);
Contact1 c = (Contact1) o;
Toast.makeText(this, c.getDisplayName(),
Toast.LENGTH_SHORT).show();
Toast.makeText(this, c.getId(), Toast.LENGTH_SHORT).show();
ids.add(c.getDisplayName());
}
答案 0 :(得分:1)
这是因为每次滚动列表时,都会调用listview的适配器getView()
方法,再次生成列表项。因此,您需要拥有自定义适配器并覆盖其getView
方法,并在其中
@override
public View getView(View view) //Just a mock method, do not copy paste
{
if(!isVisible[position]){ // isVisible is an array which holds whether a view at position is visible or not
//make it invicsible here
}
return view;
}
答案 1 :(得分:1)
该项目,我将假设它是一个Contact1
对象,仍然在数组中(或者用于保存项目的任何容器)。
您需要做以下两件事之一:
1)从数组中删除该项,然后重新生成列表视图
2)保留一个不可见项目的列表(如建议的沙子),然后不为它们创建视图。
答案 2 :(得分:0)
如果您使用自定义适配器并且想要在滚动时隐藏,那么您需要在单击列表视图时保留一个标志然后在getView()
内部根据位置制作列表视图或列表视图项目,或者您可以将所有项目隐藏为不可见。
答案 3 :(得分:0)
您可以使用该BaseAdpter,并根据视图位置使其可见和不可见
public class ContactsAdapter extends BaseAdapter {
ArrayList<ContactInfo> mlist;
Context mcontext;
// this arraylist used to contains click item
List<String> checkednamelist;
public ContactsAdapter (Context context,ArrayList<ChatInfo> mchtlist) {
checkednamelist = new ArrayList<String>();
mlist = mchtlist;
mcontext = context;
}
@Override
public int getCount() {
return mlist.size();
}
@Override
public Object getItem(int postion) {
return mlist.get(postion);
}
@Override
public long getItemId(int position) {
return position;
}
@Override
public View getView(int position, View convertview, ViewGroup viewgroup){
View view = null;
if(convertview == null){
LayoutInflater inflater = context.getLayoutInflater();
view = inflater.inflate(R.layout.contactrow, null);
ContactHolder holder = new ContactHolder();
holder.txtviewfirstname = (TextView)view.findViewById(R.id.firstname);
holder.txtviewphone = (TextView)view.findViewById(R.id.phone);
holder.chkselected = (CheckBox)view.findViewById(R.id.check);
chkselected .setOnClickListener(new OnClickListener() {
@Override
public void onClick(View v) {
// here you can add selected item name for make it invisible from list
checkednamelist.add("Stringvalures");
});
// this code is helps to achieve that
try{
if (checkednamelist.contains("yourstringname")) {
// here make visible your cotrol
chkleft.setChecked(true);
chkleft.setVisibility(View.VISIBLE);
} else {
// here make Invisible your cotrol
chkleft.setChecked(false);
chkleft.setVisibility(View.INVISIBLE);
}
}catch(Exception e){
Log.i(TAG, "Exception while checkbox make unchecked when scrolling"+e);
}
view.setTag(holder);
}
else{
view = convertview;
}
ContactHolder holder2 = (ContactHolder) view.getTag();
holder2.txtviewfirstname.setText(list.get(position).firstname);
holder2.txtviewphone.setText(list.get(position).phonenumber);
holder2.chkselected.setChecked(list.get(position).selected);
return view;
}
}