程序師世界是廣大編程愛好者互助、分享、學習的平台,程序師世界有你更精彩!
首頁
編程語言
C語言|JAVA編程
Python編程
網頁編程
ASP編程|PHP編程
JSP編程
數據庫知識
MYSQL數據庫|SqlServer數據庫
Oracle數據庫|DB2數據庫
 程式師世界 >> 編程語言 >> 更多編程語言 >> 編程綜合問答 >> inflater-使用 layout inflatter 如何在另一個 view 中添加 view?

inflater-使用 layout inflatter 如何在另一個 view 中添加 view?

編輯:編程綜合問答
使用 layout inflatter 如何在另一個 view 中添加 view?

我使用兩個 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); 
  1. 上一頁:
  2. 下一頁:
Copyright © 程式師世界 All Rights Reserved