ฉันพยายามใช้ Java ( ไม่ใช่ XML ) เพื่อสร้าง LinearLayout ด้วยปุ่มที่เติมเต็มหน้าจอและมีระยะขอบ นี่คือโค้ดที่ทำงานโดยไม่มีระยะขอบ:
LinearLayout buttonsView = new LinearLayout(this);
buttonsView.setOrientation(LinearLayout.VERTICAL);
for (int r = 0; r < 6; ++r) {
Button btn = new Button(this);
btn.setText("A");
LinearLayout.LayoutParams lp = new LinearLayout.LayoutParams(LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.FILL_PARENT); // Verbose!
lp.weight = 1.0f; // This is critical. Doesn't work without it.
buttonsView.addView(btn, lp);
}
ViewGroup.LayoutParams lp = new ViewGroup.LayoutParams(ViewGroup.LayoutParams.FILL_PARENT, ViewGroup.LayoutParams.FILL_PARENT);
setContentView(buttonsView, lp);
เพื่อให้ใช้งานได้ดี แต่คุณจะให้ขอบปุ่มบนโลกได้อย่างไรจึงมีช่องว่างระหว่างกัน ฉันลองใช้LinearLayout.MarginLayoutParams
แต่ไม่มีweight
สมาชิกดังนั้นมันจึงไม่ดี และมันจะไม่ทำงานถ้าคุณผ่านมันไปlp
ในตัวสร้างมัน
เป็นไปไม่ได้เหรอ? เพราะมันดูเหมือนว่ามันและมันจะไม่ใช่งานเลย์เอาต์ Android ชิ้นแรกที่คุณสามารถทำได้ใน XML เท่านั้น