I want to add a table layout to ExpandableListView as a child item. so that when we click on group data its adaptor shows a table layout.

Thanks

link|improve this question

71% accept rate
stackoverflow.com/questions/8891006/… check this question's answer given by me. – Sameer Jan 17 at 12:40
this doesent have a child view with a layout it have a array – abhishek ameta Jan 17 at 13:24
feedback

1 Answer

up vote 0 down vote accepted

The child view in BaseExpandableListView

    @Override
public View getChildView( int groupPosition,  int childPosition,
         boolean isLastChild,  View convertView,  ViewGroup parent) {
    TableLayout layout = new TableLayout(this.context);
    layout.setStretchAllColumns(true);
    TableRow tr1 = null;
    if(groupPosition==0){
        Toast.makeText(context, "text in if"+convertView, Toast.LENGTH_SHORT).show();
                if(childPosition==0){             
                     tr1 =new TableRow(this.context);
                     TextView tv = new TextView(this.context);
                    tv.setText("one");
                    tv.setTextColor(Color.YELLOW);                              
                    tr1.addView(tv);
                    layout.addView(tr1);
                }
                if(childPosition==1){
                     tr1 =new TableRow(this.context);
                     TextView tv = new TextView(this.context);
                    tv.setText("two");
                    tv.setTextColor(Color.YELLOW);                                
                    tr1.addView(tv);
                    layout.addView(tr1);
                }
                if (isLastChild) {
                    if(pos_child==0){
                        layout=getObj();
                        }
                        else if(pos_child==1){
                            TableRow tr3 =new TableRow(this.context);
                            TextView tv = new TextView(this.context);
                            tv.setText("ameta");
                            tr3.addView(tv);
                            layout.addView(tr3);
                        }
                }
    }
    return layout;
}
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

Not the answer you're looking for? Browse other questions tagged or ask your own question.