5
Quiero crear tablelayout interno y agregar allí 1 fila con 2 columnas, el siguiente código no muestra nada, ¿por qué?creando dinámicamente tablelayout (android)
Aquí es la actividad principal:
public class TestActivity extends Activity {
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
LayoutParams params = new LinearLayout.LayoutParams(LayoutParams.FILL_PARENT,
LayoutParams.WRAP_CONTENT);
TextView tv1 = new TextView(this);
TextView tv2=new TextView(this);
tv1.setLayoutParams(params);
tv2.setLayoutParams(params);
tv1.setText("Hello1!");
tv2.setText("Hello2!");
TableLayout layoutINNER = new TableLayout(this);
layoutINNER.setLayoutParams(params);
TableRow tr = new TableRow(this);
tr.setLayoutParams(params);
tr.addView(tv1);
tr.addView(tv2);
layoutINNER.addView(tr);
LinearLayout main = (LinearLayout)findViewById(R.id.android_main_layout);
main.addView(layoutINNER);
}
}
XML:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/android:main_layout"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
</LinearLayout>
ACTUALIZACIÓN:
Bueno, por fin he resuelto este problema, que era sólo necesitaba usar TableRow.LayoutParams con TextViews, no LinearLayout.LayoutParams u otro
¿Ha intentado utilizar 'TableLayout.LayoutParams' lugar para su' 'TextViews' y la TableRow'? – kaspermoerch
intenté hace poco, no funciona demasiado – user1049280
Esto es lo que está buscando: http://www.warriorpoint.com/blog/2009/07/01/android-creating-tablerow-rows-inside- a-tablelayout-programatically / – OrhanC1