我有2個表格佈局。我想隱藏第二個佈局並將第三個佈局移動到第二個位置。如何設置tablelayout android:layout_below編程式
IM隱藏的第二個佈局,但不知道如何將第三佈局移動到第二位置
TableLayout i=(TableLayout)findViewById(R.id.table2);
TableLayout i2=(TableLayout)findViewById(R.id.table3);
TableLayout i3=(TableLayout)findViewById(R.id.table4);
i.setVisibility(View.GONE);
i2.setVisibility(View.GONE);
i3.setVisibility(View.GONE);
TableLayout i5=(TableLayout)findViewById(R.id.table5);
i5.// Now i want to add this layout below to table layout R.id.table1 (the first table layout in this section)
謝謝... m困惑於addview(id)。我試圖但htere是沒有這樣的方法/參數如下相對佈局。 – kunwarandroid 2013-05-08 07:40:32
請發佈我們的整個代碼 – d3m0li5h3r 2013-05-08 07:46:13