在Android中是否有一個用於Swing的LayoutManager作爲LinearLayout?我非常喜歡組件重量的想法。Android的LinearLayout for Swing
4
A
回答
2
如果您需要個體重量使用GridBagLayout的。或者你可以嘗試BoxLayout。
5
您可以使用FlowLayout,GridLayout或BorderLayout。根據我在java中構建GUI的經驗,我主要使用BorderLayouts(大部分時間)和GridLayouts的組合。
如果你希望它看起來像
代碼:
public void initComponents() {
jButton1 = new javax.swing.JButton();
jButton2 = new javax.swing.JButton();
jButton3 = new javax.swing.JButton();
jButton4 = new javax.swing.JButton();
setLayout(new java.awt.GridLayout(0, 1));
jButton1.setText("jButton1");
add(jButton1);
jButton2.setText("jButton2");
add(jButton2);
jButton3.setText("jButton3");
add(jButton3);
jButton4.setText("jButton4");
add(jButton4);
}
相關問題
- 1. LinearLayout的layout_weight for android不起作用
- 2. 類似Android/iPhone的ScrollView for Swing
- 3. Dark LookAndFeel for Swing
- 4. Android我的LinearLayout
- 5. android LinearLayout
- 6. Android LinearLayout
- 7. LinearLayout在2 LinearLayout在Android
- 8. Android LinearLayout間距
- 9. 擴展LinearLayout for App Widget
- 10. Swing Databinding for multiple JComponents
- 11. LinearLayout中的android TabHost
- 12. LinearLayout上的Android onTouchListener
- 13. LinearLayout上的Android + setDividerDrawable?
- 14. LinearLayout中的Android ScrollView
- 15. Android的Linearlayout旋轉?
- 16. 如何使用Java for Android設置LinearLayout上的marginTop?
- 17. Android linearLayout問題
- 18. center linearlayout verticall android
- 19. Android LinearLayout對齊
- 20. Android LinearLayout重量
- 21. LinearLayout問題[Android]
- 22. Android LinearLayout Multi-Touch
- 23. Android LinearLayout getChildAt(index)
- 24. Android LinearLayout TouchMovement
- 25. 使用LinearLayout的Android RecyclerView
- 26. Android LinearLayout不顯示
- 27. 將LinearLayout添加到LinearLayout中android
- 28. Android Checkable LinearLayout狀態
- 29. 的Android的LinearLayout擴大
- 30. 縮放的LinearLayout在Android的
看來GridBagLayout已經足夠接近我正在尋找的東西了。 – tilex 2012-02-23 11:46:20