Estoy creando una tabla dinámica y hago lo siguiente que funciona perfectamente, pero necesito saber cómo podría agregar en la columna de "descripcion" dos textview. Si es posible? Agregar mas elementos dentro de una columna. gracias!!
___________! I am creating a pivot table and I do the following it works perfectly, but I need to know how I could add in the column of "description" two textview. It's possible? Add more elements in a column. thank you!
TextView descripcion, imagene; TableLayout tabla = (TableLayout)FindViewById(Resource.Id.tableLayoutPromociones);
fila = new TableRow(this); fila.SetGravity(GravityFlags.Center); fila.SetPadding(1, 1, 1, 1);
imagene = new TextView(this);
imagene.SetPadding(1, 1, 1, 1);
imagene.SetText("QR", TextView.BufferType.Editable);
imagene.SetTextSize(Android.Util.ComplexUnitType.Sp, 15);
imagene.SetTextColor(Color.ParseColor("#3D3E3F"));
imagene.Gravity = GravityFlags.Right;
imagene.SetBackgroundColor(Color.ParseColor("#D8E8E9"));
descripcion = new TextView(this);
descripcion.SetPadding(1, 1, 1, 1);
descripcion.SetText(i.nombreProducto.ToString(), TextView.BufferType.Editable);
descripcion.SetTextSize(Android.Util.ComplexUnitType.Sp, 15);
descripcion.SetTextColor(Color.ParseColor("#3D3E3F"));
descripcion.Gravity = GravityFlags.Center;
descripcion.SetBackgroundColor(Color.ParseColor("#FFFFFF"));
fila.AddView(imagene);
fila.AddView(descripcion);
tabla.AddView(fila);