我有一个 LinearLayout,我动态添加 View items 。我需要让新物品位于低于旧物品的位置。
例如:
MenuLayout = (LinearLayout) MainActivity.findViewById (R.id.MenuLayout);
MenuLayout.addView(newBox); //at the top
MenuLayout.addView(newBox); //lower
MenuLayout.addView(newBox); //At the bottom