如何使用在该项目内创建的按钮删除ListView项目。

时间:2014-04-10 18:30:48

标签: java android listview

我有一个有Listview的课程。 ListView使用pattern.xml文件填充,该文件中有一个按钮。调用类时,将为列表视图中的每个项复制Button。现在我想要的是访问那些按钮从列表中删除相应的项目。那我该怎么办呢?请帮我解决这个问题。该类的代码如下所示。

public class Secondscreen extends Activity {

@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.secondscreen); 
    ListView lv= (ListView) findViewById(R.id.listView1);


    final Button thirdBtn = (Button) findViewById(R.id.third);


    final Controller aController = (Controller) getApplicationContext();

        final int cartSize = aController.getCart().getCartSize();

        final ArrayList<Listitem> arrayList=new ArrayList<Listitem>();


         BaseAdapter adapter= new BaseAdapter(){

            @Override
            public int getCount() {
                // TODO Auto-generated method stub
                return arrayList.size();
            }

            @Override
            public Object getItem(int position) {
                // TODO Auto-generated method stub
                return arrayList.get(position);
            }

            @Override
            public long getItemId(int position) {
                // TODO Auto-generated method stub
                return 0;
            }

            LayoutInflater inflater=(LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            @Override
            public View getView(final int position, View view, ViewGroup viewgroup) {
                if (view == null) {
                    view=inflater.inflate(R.layout.pattern, null);
                }
                TextView tv=(TextView) view.findViewById(R.id.nameview);
                TextView tv2=(TextView) view.findViewById(R.id.pdesc);
                TextView tv3=(TextView) view.findViewById(R.id.priceView);



                tv.setText(arrayList.get(position).getName());
                tv2.setText(""+arrayList.get(position).getPrice());
                tv3.setText(arrayList.get(position).getDesc());
                return view;
            }       

        };
        adapter.notifyDataSetChanged();
        lv.setAdapter(adapter);


        if(cartSize >0)
            {   

                for(int i=0;i<cartSize;i++)
                {

                   String pName   = aController.getCart().getProducts(i).getProductName();
                   int pPrice      = aController.getCart().getProducts(i).getProductPrice();
                   String pDisc       = aController.getCart().getProducts(i).getProductDesc();

                    Listitem item=new Listitem(pName, pPrice, pDisc);
                    arrayList.add(item);
                    adapter.notifyDataSetChanged();

                }

            }
    }
}

1 个答案:

答案 0 :(得分:1)

您必须指定OnClickListener的{​​{1}}并从Button中的arrayList移除项目并致电BaseAdapter

notifyDataSetChanged();