我使用兩個 buttons 創建了 mainLayout。這兩個按鈕是 add 和 remove。
add: 添加另外的 layout
remove : 移除其它的 layout
<Button
android:id="@+id/btnAdd"
android:textStyle="bold"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="Add View"
android:onClick="addView" />
<Button
android:id="@+id/btnRemove"
android:textStyle="bold"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_gravity="center_horizontal"
android:text="Remove View"
android:onClick="removeView" />
下面的代碼實現的是當我點擊 addView 按鈕時添加 view:
LayoutInflater inflater= (LayoutInflater)this.getSystemService(LAYOUT_INFLATER_SERVICE);
view=inflater.inflate(R.layout.other_layout,null);
mainLayout.addView(view);
這個 view 是添加在 main layout下面的。我想把 view 添加在 addView 按鈕的右下邊,removeView 按鈕的上面,但是不在 main Layout 的底部。
如何實現?
在兩個按鈕之間添加一個framelayout。
然後在執行時把 view放到 framelayout中。
LayoutInflater inflater= (LayoutInflater)this.getSystemService (LAYOUT_INFLATER_SERVICE);
view=inflater.inflate(R.layout.other_layout,null);
myframeLayout.addView(view);