How to make condition inside getView of Custom BaseAdapter

Posted by user1501150 on Stack Overflow See other posts from Stack Overflow or by user1501150
Published on 2012-07-04T10:11:33Z Indexed on 2012/07/05 9:16 UTC
Read the original article Hit count: 223

Filed under:
|

I want to make a Custom ListView with Custom BaseAdapter, where the the status=1,I want to show a CheckBox, and else I want to show a textView..


My given condition is:

 if (NewtheStatus == 1) {
                    alreadyOrderText
                    .setVisibility(TextView.GONE);

                }
                else{
                    checkBox.setVisibility(CheckBox.GONE);

                }

But Some times I obtain some row that has neither checkBox nor TextView.


The Code of my Custom BaseAdapter is given below .

    private class MyCustomAdapter extends BaseAdapter {

    private static final int TYPE_ITEM = 0;
    private static final int TYPE_ITEM_WITH_HEADER = 1;
    // private static final int TYPE_MAX_COUNT = TYPE_SEPARATOR + 1;

    private ArrayList<WatchListAllEntity> mData = new ArrayList();
    private LayoutInflater mInflater;
    private ArrayList<WatchListAllEntity> items = new ArrayList<WatchListAllEntity>();

    public MyCustomAdapter(Context context,
            ArrayList<WatchListAllEntity> items) {

        mInflater = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
    }

    public void addItem(WatchListAllEntity watchListAllEntity) {
        // TODO Auto-generated method stub
        items.add(watchListAllEntity);
    }

    public View getView(int position, View convertView, ViewGroup parent) {

        View v = convertView;
        final int position1 = position;
        if (v == null) {

            LayoutInflater vi = (LayoutInflater) getSystemService(Context.LAYOUT_INFLATER_SERVICE);
            v = vi.inflate(R.layout.listitempict, null);
        }
        watchListAllEntity = new WatchListAllEntity();
        watchListAllEntity = items.get(position);
        Log.i("position: iteamsLength ", position + ", " + items.size());
        if (watchListAllEntity != null) {

            ImageView itemImage = (ImageView) v
                    .findViewById(R.id.imageviewproduct);

            if (watchListAllEntity.get_thumbnail_image_url1() != null) {
                Drawable image = ImageOperations(watchListAllEntity
                        .get_thumbnail_image_url1().replace(" ", "%20"),
                        "image.jpg");

                // itemImage.setImageResource(R.drawable.icon);

                if (image != null) {
                    itemImage.setImageDrawable(image);
                    itemImage.setAdjustViewBounds(true);
                } else {

                    itemImage.setImageResource(R.drawable.iconnamecard);
                }

                Log.i("status_ja , status",
                        watchListAllEntity.get_status_ja() + " ,"
                                + watchListAllEntity.getStatus());

                int NewtheStatus = Integer.parseInt(watchListAllEntity
                        .getStatus());
                CheckBox checkBox = (CheckBox) v
                        .findViewById(R.id.checkboxproduct);
                TextView alreadyOrderText = (TextView) v
                        .findViewById(R.id.alreadyordertext);
                if (NewtheStatus == 1) {
                    alreadyOrderText
                    .setVisibility(TextView.GONE);

                }
                else{
                    checkBox.setVisibility(CheckBox.GONE);

                }
                Log.i("Loading ProccardId: ",
                        watchListAllEntity.get_proc_card_id() + "");
                checkBox.setOnCheckedChangeListener(new OnCheckedChangeListener() {

                    public void onCheckedChanged(CompoundButton buttonView,
                            boolean isChecked) {
                        WatchListAllEntity watchListAllEntity2 = items
                                .get(position1);
                        Log.i("Position: ", position1 + "");
                        // TODO Auto-generated method stub
                        if (isChecked) {


                                Constants.orderList.add(watchListAllEntity2
                                        .get_proc_card_id());
                                Log.i("Proc Card Id Add: ",
                                        watchListAllEntity2
                                                .get_proc_card_id() + "");


                        } else {
                            Constants.orderList.remove(watchListAllEntity2
                                    .get_proc_card_id());
                            Log.i("Proc Card Id Remove: ",
                                    watchListAllEntity2.get_proc_card_id()
                                            + "");

                        }

                    }
                });
            }

        }

        return v;
    }

    private Drawable ImageOperations(String url, String saveFilename) {
        try {
            InputStream is = (InputStream) this.fetch(url);
            Drawable d = Drawable.createFromStream(is, "src");

            return d;
        } catch (MalformedURLException e) {
            return null;
        } catch (IOException e) {
            return null;
        }
    }

    public Object fetch(String address) throws MalformedURLException,
            IOException {
        URL url = new URL(address);
        Object content = url.getContent();
        return content;
    }

    public int getCount() {
        // TODO Auto-generated method stub
        int sizef=items.size();
        Log.i("Size", sizef+"");
        return items.size();
    }

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

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

}

© Stack Overflow or respective owner

Related posts about android

Related posts about baseadapter