Pergunta

Então, quero adicionar (criar) LinearLayout no aplicativo de trabalho clicando no botão.E quase faço isso, adiciono alguma coisa (espaço livre), mas não vejo nada.

Para verificar se o layout foi adicionado, coloquei TextView nele.

meu_layout.xml

<LinearLayout
    android:id="@+id/layout_for_sides"
    android:layout_width="match_parent"
    android:layout_height="wrap_content"
    android:orientation="horizontal" >

    <LinearLayout
        android:layout_width="match_parent"
        android:layout_height="wrap_content" >

        <TextView
            android:id="@+id/title_side_size_1"
            android:layout_width="wrap_content"
            android:layout_height="wrap_content"
            android:text="1 side size:" />

        <EditText
            android:id="@+id/inp_side_width_1"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:ems="10"
            android:hint="cm"
            android:inputType="number" >

            <requestFocus />
        </EditText>

        <EditText
            android:id="@+id/inp_side_height_1"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:ems="10"
            android:hint="cm"
            android:inputType="number" >
        </EditText>
    </LinearLayout>
</LinearLayout>

<LinearLayout
    android:layout_width="match_parent"
    android:layout_height="wrap_content" >

    <Button
        android:id="@+id/btn_add_side"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Add side" />

    <Button
        android:id="@+id/btn_calc_result"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_weight="1"
        android:text="Enter" />
</LinearLayout>

MainActivity.java

public class MainActivity extends Activity implements OnClickListener {
    Button btn_add_side;
    LinearLayout layout_for_sides;
    @Override
    protected void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        setContentView(R.layout.activity_main);

        layout_for_sides = (LinearLayout) findViewById(R.id.layout_for_sides);

        btn_add_side = (Button) findViewById(R.id.btn_add_side);

        btn_add_side.setOnClickListener(this);
    }
    @Override
    public void onClick(View v) {

        switch (v.getId()) {
        case R.id.btn_add_side:
            LinearLayout newlayout = new LinearLayout(this);
            newlayout.setOrientation(LinearLayout.VERTICAL);

            newlayout.setLayoutParams(new LinearLayout.LayoutParams(
                        LinearLayout.LayoutParams.MATCH_PARENT,
                        LinearLayout.LayoutParams.WRAP_CONTENT, 1)); 

            newlayout.setBackgroundColor(Color.BLACK); //IT DOESN'T WORK, THERE IS NOTHING WITH BLACK BACKGROUND

            layout_for_sides.addView(newlayout);

            LayoutParams lpView = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);

            TextView tv = new TextView(this);
                    tv.setText("TextView");
                    tv.setId(5);
                    tv.setTextColor(Color.BLACK);
                    this.newlayout.addView(tv, lpView); //IT WORKS, I SEE FREE SPACE, BUT NEITHER TEXT

            break;

        default:
            break;
        }

    }
}

A pergunta é (resolvida): por que não vejo nada?Apenas o espaço livre aparece, mas nenhum TextVeiw.

Atualizar: Nova pergunta:O problema estava em layout_for_sides que possui outro LinearLayout.Removi tudo de layout_for_sides e funciona.Mas não entendo como essa outra camada impede de mostrar meu novo layout?

Foi útil?

Solução 2

Problema em parâmetros errados do pai LinearLayout - layout_for_sides.

Possui android:orientation="horizontal", mas precisa de android:orientation="vertical".Por causa disso não vi nada.

Outras dicas

Experimente isto:

 public void onClick(View v) {

        switch (v.getId()) {
        case R.id.btn_add_side:
            LinearLayout newlayout = new LinearLayout(this);
            newlayout.setOrientation(LinearLayout.VERTICAL);

            newlayout.setLayoutParams(new LinearLayout.LayoutParams(
                        LinearLayout.LayoutParams.MATCH_PARENT,
                        LinearLayout.LayoutParams.WRAP_CONTENT, 1)); 

           //<---------------------Try this-------------------->
            layout_for_sides.addView(newlayout,new LinearLayout.LayoutParams(
                        LinearLayout.LayoutParams.MATCH_PARENT,
                        LinearLayout.LayoutParams.WRAP_CONTENT, 1));

            LayoutParams lpView = new LayoutParams(LayoutParams.WRAP_CONTENT, LayoutParams.WRAP_CONTENT);

            TextView tv = new TextView(this);
   this.newlayout.addView(tv, lpView); //IT WORKS, I SEE FREE SPACE, BUT NEITHER TEXT
                    tv.setText("TextView");
                    tv.setId(5);
                    tv.setTextColor(Color.BLACK);

  newlayout.setBackgroundColor(Color.BLACK); //IT DOESN'T WORK, THERE IS NOTHING WITH BLACK BACKGROUND

            break;

        default:
            break;
        }

    }
Licenciado em: CC-BY-SA com atribuição
Não afiliado a StackOverflow
scroll top