2

我有一个列表视图,当它被点击时,它必须是不可见的。它工作得很好,但是当屏幕向上和向下滚动时,那些不可见的又会重新出现。有谁知道如何解决这些问题。

这是我的 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()); 




            }
4

4 回答 4

1

发生这种情况是因为每次滚动列表时,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;
}
于 2012-09-05T04:13:34.720 回答
1

该项目,我将假设它是一个Contact1对象,仍在数组中(或您用来保存项目的任何容器)。

您将需要以下两件事之一:

1)从数组中删除项目然后重新生成列表视图

2)保留不可见项目的列表(如建议的桑迪),然后不为它们创建视图。

于 2012-09-05T04:18:18.843 回答
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;
    }

}

于 2012-09-05T04:49:53.237 回答
0

如果您使用自定义适配器并且还想在滚动时隐藏,那么您需要在单击列表视图时维护一个标志,然后在内部getView()根据位置创建您的列表视图或列表视图项目,或者您可以将所有内容隐藏为不可见。

于 2012-09-05T04:14:15.607 回答