Tengo en una sola columna todos lo botones, lo que quiero que esten en varias columnas.
Los botones los genero dinamicamente por medio de una consulta
El metod que genera los botones:
Código Java:
Ver original
private void createEmpresas() { Button b; JSONObject json = null; int count = 0; LinearLayout lm = (LinearLayout) findViewById(R.id.linearMain); JSONObject jobj = obj_sqlite.get_descripcion_empresas(); try { json = new JSONObject(jobj.getString("json")); Log.e("getParams", e.getMessage()); } for (int x = 1; x <= count; x++) { try { JSONObject json_row = new JSONObject(json.getString("row" + x)); b.setText(json_row.getString("descripcion")); b.setId(json_row.getInt("empresa")); b.setTextSize(10); b.setPadding(8, 3, 8, 3); b.setTypeface(Typeface.SERIF, Typeface.BOLD_ITALIC); b.setLayoutParams(new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT)); lm.addView(b); // TODO Auto-generated method stub Toast.makeText(getApplicationContext(), "Yipee.." +v.getId(), Toast.LENGTH_SHORT) .show(); } }); Log.e("getParams", e.getMessage()); } } }
Y este es mi xml:
Código XML:
Ver original
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android" xmlns:tools="http://schemas.android.com/tools" android:layout_width="match_parent" android:layout_height="match_parent" android:background="@color/bg_main" android:paddingBottom="@dimen/activity_vertical_margin" android:paddingLeft="@dimen/activity_horizontal_margin" android:paddingRight="@dimen/activity_horizontal_margin" android:paddingTop="@dimen/activity_vertical_margin" tools:context="com.example.php_mysql_sqlite.MainActivity" > <Button android:id="@+id/button4" style="?android:attr/buttonStyleSmall" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignBaseline="@+id/button6" android:layout_alignBottom="@+id/button6" android:layout_alignParentRight="true" android:layout_marginRight="17dp" android:background="@null" android:onClick="loginOut" android:text="@string/btLogOut" android:textColor="@color/Red" /> <Button android:id="@+id/button6" style="?android:attr/buttonStyleSmall" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignBaseline="@+id/button5" android:layout_alignBottom="@+id/button5" android:layout_centerHorizontal="true" android:onClick="syncSqliteMysql" android:text="@string/syn" /> <Button android:id="@+id/button5" style="?android:attr/buttonStyleSmall" android:layout_width="wrap_content" android:layout_height="wrap_content" android:layout_alignParentBottom="true" android:layout_alignParentLeft="true" android:onClick="borrarTabla" android:text="@string/delTable" /> <ScrollView android:layout_width="285dp" android:layout_height="330dp" android:layout_marginTop="1dp" > <LinearLayout android:id="@+id/linearMain" android:layout_width="fill_parent" android:layout_height="fill_parent" android:layout_alignLeft="@+id/button5" android:layout_alignParentTop="true" android:layout_alignRight="@+id/button4" android:background="@color/White" android:orientation="vertical" > </LinearLayout> </ScrollView> </RelativeLayout>
Gracias a todos