增加可扩展列表视图中文本的值 [英] Increment the value of text in expandable listview

查看:75
本文介绍了增加可扩展列表视图中文本的值的处理方法,对大家解决问题具有一定的参考价值,需要的朋友们下面随着小编来一起学习吧!

问题描述

我创建了自定义的Expandablelistview.该列表视图在子项中包含加减图像视图和一个文本视图.如果我单击一行中的加号,则表示将值增加为1.下一行从2开始增加值.我想为每个子项从0开始增加值.

I have created the custom Expandablelistview.That list view contains plus and minus image view and one text view in child items.If i click the plus in one row means it increase the value increased as 1. But if i move on to the next row the value increment gets started from 2. I want to increase the value from 0 for each child items.

 public class ExpandListAdapter extends BaseExpandableListAdapter {

    private Context context;
    private ArrayList<Group> groups;
    ArrayList<Child> ch_list=new ArrayList<Child>();
    private ViewHolder viewHolder; // make it global
    private int count=0;
    int[] myIntegerArray = new int[10100];

    public class ViewHolder {

        TextView tv ;
        ImageView food_image;
        ImageView minus,plus ;
        TextView item_count;

    }


    public ExpandListAdapter(Context context, ArrayList<Group> groups) {
        this.context = context;
        this.groups = groups;

    }


    @Override
    public Object getChild(int groupPosition, int childPosition) {
        ArrayList<Child> chList = groups.get(groupPosition).getItems();
        return chList.get(childPosition);
    }

    @Override
    public long getChildId(int groupPosition, int childPosition) {
        return childPosition;
    }

    @Override
    public View getChildView(final int groupPosition, final int childPosition,
                             boolean isLastChild, View convertView, ViewGroup parent) {

        final Child child = (Child) getChild(groupPosition, childPosition);

        if (convertView == null) {
            LayoutInflater inflator = LayoutInflater.from(parent.getContext());
            convertView = inflator.inflate(R.layout.detail_list, null);
            viewHolder = new ViewHolder();

            viewHolder.tv = (TextView) convertView.findViewById(R.id.type);
            viewHolder.food_image = (ImageView) convertView.findViewById(R.id.food_image);
            viewHolder.minus = (ImageView) convertView.findViewById(R.id.minus);
            viewHolder.plus = (ImageView) convertView.findViewById(R.id.plus);
            viewHolder.item_count = (TextView) convertView.findViewById(R.id.count);


            convertView.setTag(viewHolder);
        }
        else {
            viewHolder = (ViewHolder) convertView.getTag();
        }

        viewHolder.tv.setText(child.getChildName());
        viewHolder.item_count.setText(child.getCount());
        viewHolder.plus.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                Child modelChild = groups.get(groupPosition).getItems().get(childPosition);
                count = count + 1;
                modelChild.setCount(count);
                modelChild.setChildName(modelChild.getChildName());
                // set your other items if any like above
                groups.get(groupPosition).getItems().set(childPosition, child);
                notifyDataSetChanged();
            }
        });
        viewHolder.minus.setOnClickListener(new View.OnClickListener() {
            @Override
            public void onClick(View view) {
                if(count!=0) {
                    Child modelChild = groups.get(groupPosition).getItems().get(childPosition);
                    count = count - 1;
                    modelChild.setCount(count);
                    modelChild.setChildName(modelChild.getChildName());
                    // set your other items if any like above
                    groups.get(groupPosition).getItems().set(childPosition, child);
                    notifyDataSetChanged();
                }
            }
        });

        return convertView;
    }

    @Override
    public  int getChildrenCount(int groupPosition) {
        ArrayList<Child> chList = groups.get(groupPosition).getItems();
        return chList.size();
    }

    @Override
    public Object getGroup(int groupPosition) {
        return groups.get(groupPosition);
    }

    @Override
    public int getGroupCount() {
        return groups.size();
    }

    @Override
    public long getGroupId(int groupPosition) {
        return groupPosition;
    }

    @Override
    public View getGroupView(int groupPosition, boolean isExpanded,
                             View convertView, ViewGroup parent) {
        Group group = (Group) getGroup(groupPosition);
        if (convertView == null) {
            LayoutInflater inf = (LayoutInflater) context
                    .getSystemService(context.LAYOUT_INFLATER_SERVICE);
            convertView = inf.inflate(R.layout.group_item, null);
        }
        TextView tv = (TextView) convertView.findViewById(R.id.group_name);
        tv.setText(group.getName());
        ExpandableListView eLV = (ExpandableListView) parent;
        int count = getGroupCount();
        if(count<1){

            eLV.expandGroup(groupPosition);
            // eLV.setGroupIndicator(null);
        }


        return convertView;
    }



    @Override
    public boolean hasStableIds() {
        return true;
    }

    @Override
    public boolean isChildSelectable(int groupPosition, int childPosition) {
        return true;
    }

}

子模型:

public class Child {

    private String Name;
    private int Image,count;

    public String getName() {
        return Name;
    }

    public void setName(String Name) {
        this.Name = Name;
    }

    public int getImage() {
        return Image;
    }

    public void setImage(int Image) {
        this.Image = Image;
    }

    public void setcount(int count) {
        this.count = count;
    }

    public int getcount() {
        return count;
    }
}

组模型:

    public class Group {

    private String name;
    private ArrayList<Child> Items;

    public String getName() {
        return name;
    }

    public void setName(String name) {
        this.name = name;
    }

    public ArrayList<Child> getItems() {
        return Items;
    }

    public void setItems(ArrayList<Child> Items) {
        this.Items = Items;
    }



}

Logcat错误:

FATAL EXCEPTION: main
                                                                     Process: abservetech.com.foodapp, PID: 14471
                                                                     android.content.res.Resources$NotFoundException: Unable to find resource ID #0x0
                                                                         at android.content.res.Resources.getResourcePackageName(Resources.java:1871)
                                                                         at android.content.res.SPRDResources.getThemeResources(SPRDResources.java:94)
                                                                         at android.content.res.SPRDResources.getText(SPRDResources.java:155)
                                                                         at android.support.v7.widget.ResourcesWrapper.getText(ResourcesWrapper.java:52)
                                                                         at android.widget.TextView.setText(TextView.java:3927)
                                                                         at abservetech.com.foodapp.ExpandListAdapter.getChildView(ExpandListAdapter.java:83)
                                                                         at android.widget.ExpandableListConnector.getView(ExpandableListConnector.java:451)
                                                                         at android.widget.AbsListView.obtainView(AbsListView.java:2280)
                                                                         at android.widget.ListView.measureHeightOfChildren(ListView.java:1271)
                                                                         at android.widget.ListView.onMeasure(ListView.java:1183)
                                                                         at android.view.View.measure(View.java:16512)

推荐答案

private ViewHolder viewHolder; // make it global

@Override
public View getChildView(int groupPosition, final int childPosition,
                         boolean isLastChild, View convertView, ViewGroup parent) {

    Child child = (Child) getChild(groupPosition, childPosition);

    if (convertView == null) {
        LayoutInflater inflator = LayoutInflater.from(parent.getContext());
        convertView = inflator.inflate(R.layout.detail_list, null);
        viewHolder = new ViewHolder();

        viewHolder.tv = (TextView) convertView.findViewById(R.id.type);
        viewHolder.food_image = (ImageView) convertView.findViewById(R.id.food_image);
        viewHolder.minus = (ImageView) convertView.findViewById(R.id.minus);
        viewHolder.plus = (ImageView) convertView.findViewById(R.id.plus);
        viewHolder.item_count = (TextView) convertView.findViewById(R.id.count);


        convertView.setTag(viewHolder);
    }
    else {
        viewHolder = (ViewHolder) convertView.getTag();
    }

    viewHolder.childName.setText(child.getChildName());
    viewHolder.item_count.setText(child.getCount());
    viewHolder.ivPlus.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
                Child modelChild = groups.get(groupPosition).getChildrens().get(childPosition);

                if(modelChild.getCount()>=0)  // set your count default 0 when you bind data initially 
                int count = modelChild.getCount() + 1;

                modelChild.setCount(count);
                modelChild.setChildName(modelChild.getChildName());
                // set your other items if any like above
                groups.get(groupPosition).getChildrens().set(childPosition, child);
                notifyDataSetChanged();
        }
    });
    viewHolder.ivMinus.setOnClickListener(new View.OnClickListener() {
        @Override
        public void onClick(View view) {
            if(count!=0) {
                Child modelChild = groups.get(groupPosition).getChildrens().get(childPosition);

                if(modelChild.getCount()>0)  // set your count default 0 when you bind data initially 
                int count = modelChild.getCount() - 1;

                modelChild.setCount(count);
                modelChild.setChildName(modelChild.getChildName());
                // set your other items if any like above
                groups.get(groupPosition).getChildrens().set(childPosition, child);
                notifyDataSetChanged();
            }
        }
    });

    return convertView;
}

这篇关于增加可扩展列表视图中文本的值的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持IT屋!

查看全文
登录 关闭
扫码关注1秒登录
发送“验证码”获取 | 15天全站免登陆