2012-05-19 13 views
14

He declarado RelativeLayout en un archivo de diseño xml. Ahora quiero agregar Views del código al Diseño existente. He añadido una Button dinámicamente a esta disposición existente de la siguiente manera a través de código:¿Cómo agregar vistas dinámicamente a un RelativeLayout ya declarado en el diseño xml?

rLayout = (RelativeLayout)findViewById(R.id.rlayout); 
     LayoutParams lprams = new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT); 
     Button tv1 = new Button(this); 
     tv1.setText("Hello"); 
     tv1.setLayoutParams(lprams); 
     tv1.setId(1); 
     rLayout.addView(tv1); 

ahora tengo que añadir otro Button a la derecha de la ya agrega Button. No puedo encontrar la manera en que puedo agregar la nueva a la derecha del botón agregado anteriormente.

Respuesta

21

Añadir la regla RelativeLayout.RIGHT_OF para el segundo añade ButtonLayoutParams:

// first Button 
    RelativeLayout rLayout = (RelativeLayout) findViewById(R.id.rlayout); 
    RelativeLayout.LayoutParams lprams = new RelativeLayout.LayoutParams(
      RelativeLayout.LayoutParams.WRAP_CONTENT, 
      RelativeLayout.LayoutParams.WRAP_CONTENT); 
    Button tv1 = new Button(this); 
    tv1.setText("Hello"); 
    tv1.setLayoutParams(lprams); 
    tv1.setId(1); 
    rLayout.addView(tv1); 

    // second Button 
    RelativeLayout.LayoutParams newParams = new RelativeLayout.LayoutParams(
      RelativeLayout.LayoutParams.WRAP_CONTENT, 
      RelativeLayout.LayoutParams.WRAP_CONTENT); 
    Button tv2 = new Button(this); 
    tv1.setText("Hello2"); 
    newParams.addRule(RelativeLayout.RIGHT_OF, 1); 
    tv2.setLayoutParams(newParams); 
    tv2.setId(2); 
    rLayout.addView(tv2); 
+0

lo que sucederá si tengo muchos botón dinámico y el penúltimo toque el borde? ¿Qué pasa con el último? – cheloncio

+0

@zhelon probablemente sea empujado hacia afuera o exprimido. Si sabe que tendrá muchos botones de los que necesita para envolver el 'RelativeLayout' en un' ScrollView' o 'HorizontalScrollView'. – Luksprog

+0

Si utilizo RelativeLayout cuando creo dinámicamente botones, ¿cómo sé en qué momento tocó el borde? – cheloncio

0

Crear otro botón:

Button tv2 = new Button(this); 
tv2.setText("World"); 
tv2.setLayoutParams(lprams); 
tv2.setId(2); 

añadir añadir que en su RelativeLayout:

rLayout.addView(tv2); 
1

puede ser esto le puede ayudar, probarlo.

rLayout = (RelativeLayout)findViewById(R.id.rlayout); 
LayoutParams lprams = new LayoutParams(LayoutParams.WRAP_CONTENT,LayoutParams.WRAP_CONTENT); 

TableLayout tl=new TableLayout(this); 
rLayout.addView(tl); 

TableRow tr1=new TableRow(this); 
tl.addView(tr1); 

Button btn1 = new Button(this); 
btn1.setText("Hello"); 
btn1.setLayoutParams(lprams); 
btn1.setId(1); 
tr1.addView(btn1); 

TextView tv1 = new TextView(this); 
tv1.setWidth(40); 
tv1.setHeight(LayoutParams.WRAP_CONTENT); 
tr1.addView(tv1); 


Button btn2 = new Button(this); 
btn2.setText("World"); 
btn2.setLayoutParams(lprams); 
btn2.setId(2); 
tr1.addView(btn2); 
Cuestiones relacionadas