我對android編程很新穎。 我想以編程方式將兩個按鈕添加到tableRow。 下面是代碼至極應該這樣做,和錶行的XML:Android:TableRow中的2個按鈕
代碼:
public void buttons() {
Button button1 = new Button(this);
button1.setText("Fertig");
Button button2 = new Button(this);
button2.setText("Zurück");
tableRow.addView(button1);
tableRow.addView(button2);
}
XML:
<TableRow
android:id="@+id/tableRow1"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentLeft="true"
android:layout_marginBottom="2dp" >
</TableRow>
但是,如果我運行的代碼,它看起來像這個:
如果我只是添加button1(從我的代碼中刪除tableRow.addView(button2);
),該按鈕位於正確的位置,在屏幕的左下角...
任何人都可以幫助我,所以兩個按鈕都會顯示正確嗎?
謝謝! :)
後您的完整xml代碼 – Sonali8890