views:

536

answers:

2

as above, how do i put 2 views inside one cell in a tablerow?

below is my code:

    TableLayout v = (TableLayout)inflater.inflate(R.layout.featureitem2, null);
//  v.setColumnStretchable(0, true);


    //adds each productname to the table
    if(productName.size()>1){
        TableRow pnamesRow = new TableRow(t);
        pnamesRow.addView(new View(t));
        for(int j=0;j < productName.size();j++){

            LinearLayout wrap = new LinearLayout(t);
            LayoutParams params = new TableRow.LayoutParams(TableRow.LayoutParams.FILL_PARENT,TableRow.LayoutParams.FILL_PARENT);
            wrap.setLayoutParams(params);
            wrap.setOrientation(LinearLayout.HORIZONTAL);
            wrap.setVisibility(View.VISIBLE);

            ImageView remove = new ImageView(t);
            remove.setTag(j);
            remove.setClickable(true);
            remove.setImageDrawable(t.getResources().getDrawable(R.drawable.remove));   
            remove.setOnClickListener(new OnClickListener(){
                @Override
                public void onClick(View arg0) {
                    int deletePosition = (Integer)arg0.getTag();
                    Log.v("pos","pos="+deletePosition);
                    removeChild(deletePosition);
                    notifyDataSetChanged();
                }

            });


            TextView pname = new TextView(t);
            pname.setText(productName.get(j));
            pname.setGravity(Gravity.CENTER);
        //  wrap.addView(pname);
            wrap.addView(remove);
            wrap.setLayoutParams(params);
            pnamesRow.addView(pname);
        //  pnamesRow.addView(pname);
        //  pnamesRow.addView(remove,j+1);
            //tbIndex++;
        }
        v.addView(pnamesRow);
    }

    for(int z =0;z < children.get(groupPosition).size();z++){
        TableRow tr2 =new TableRow(t); 
        Feature f = (Feature) children.get(groupPosition).get(z);
        TextView feature = new TextView(t);
        feature.setText(f.getFeaturename());
        feature.setTextColor(Color.BLACK);
        feature.setGravity(Gravity.CENTER);
        tr2.addView(feature);
        for(int k =0;k < f.getNumFeatures();k++){
            TextView value = new TextView(t);
            value.setText(f.getVal(k));
            value.setTextColor(Color.BLACK);
            //value.setGravity(Gravity.CENTER);
            value.offsetLeftAndRight(20);
            tr2.addView(value);
            v.setColumnShrinkable(k+1, true);
            tr2.setPadding(5, 5, 5, 5);
            tr2.offsetTopAndBottom(50);
        }

        v.addView(tr2);
    }
+1  A: 

You would need to put them in some sort of container, such as a LinearLayout or RelativeLayout. There can only be one View per cell, but if that View is a container, then that one View can be actually made up of several.

Bear in mind, though, that phone screens are tiny. Having containers nested inside a TableLayout may be difficult to use on, say, a QVGA screen.

CommonsWare
Hi ConmmonsWare, I have tried to put my views inside a linearLayout, as show on the code above.... however it aint visible when i run the application
alan
Use `hierarchyviewer` to figure out what is wrong, then.
CommonsWare
A: 

think i have found the answer,thanks to commonsWare,

I should set the layoutparams to the linearlayout only after i add the items into the linearlayout

alan