Tôi đang cố gắng để đạt được các chương trình sau (chứ không phải khai báo qua XML):
<RelativeLayout...>
<TextView ...
android:id="@+id/label1" />
<TextView ...
android:id="@+id/label2"
android:layout_below: "@id/label1" />
</RelativeLayout>
Nói cách khác, làm cách nào để làm cho cái thứ hai TextView
xuất hiện bên dưới cái thứ nhất, nhưng tôi muốn làm nó trong mã:
RelativeLayout layout = new RelativeLayout(this);
TextView label1 = new TextView(this);
TextView label2 = new TextView(this);
...
layout.addView(label1);
layout.addView(label2);
setContentView(layout);
Cập nhật:
Cảm ơn, TreeUK. Tôi hiểu hướng chung, nhưng nó vẫn không hoạt động - "B" chồng chéo "A". Tôi đang làm gì sai?
RelativeLayout layout = new RelativeLayout(this);
TextView tv1 = new TextView(this);
tv1.setText("A");
TextView tv2 = new TextView(this);
tv2.setText("B");
RelativeLayout.LayoutParams lp = new RelativeLayout.LayoutParams(
RelativeLayout.LayoutParams.WRAP_CONTENT, RelativeLayout.LayoutParams.FILL_PARENT);
lp.addRule(RelativeLayout.RIGHT_OF, tv1.getId());
layout.addView(tv1);
layout.addView(tv2, lp);