Android動態添加View的問題解決方案

來源:互聯網
上載者:User

後台代碼

複製代碼 代碼如下: private void ChangeView()
{
ly.removeAllViews();
LayoutInflater inflater = (LayoutInflater)getSystemService(LAYOUT_INFLATER_SERVICE);
View layout = inflater.inflate(R.layout.grid,null);
GridView gridview = (GridView)layout.findViewById(R.id.gridview);
gridview.setAdapter(new ItemAdapter(MainActivity.this));
gridview.setOnItemSelectedListener(new OnItemSelectedListener() {

public void onItemSelected(AdapterView arg0, View arg1,
int arg2, long arg3) {
}
public void onNothingSelected(AdapterView arg0) {
}
});

ly.addView(gridview);
}

 代碼說明:

        a).  ly為main.xml中id為ContentView的LinearLayout,即需動態添加View的容器

        b).  ItemAdapter為Grid填充資料的輔助類

      現象

        正常

      如果把grid.xml中GridView的代碼直接複製粘貼到main.xml中LinearLayout容器內沒有任何問題,布局正常。

        不正常

      如上動態添加android:layout_height="fill_parent"就失效,不管這裡設定絕對數值如300dp也不行,GridView始終只顯示有Item的內容,即容器內的View無法完全填充LinearLayout父容器。

  三、 解決代碼

    就一行代碼,不知道是Android的Bug還是怎麼:

複製代碼 代碼如下:ly.addView(gridview,new LinearLayout.LayoutParams(LinearLayout.LayoutParams.FILL_PARENT, LinearLayout.LayoutParams.FILL_PARENT));

結束

  這個問題煩了我兩個小時+,不管怎麼說還是解決了,開心ing。

相關文章

聯繫我們

該頁面正文內容均來源於網絡整理,並不代表阿里雲官方的觀點,該頁面所提到的產品和服務也與阿里云無關,如果該頁面內容對您造成了困擾,歡迎寫郵件給我們,收到郵件我們將在5個工作日內處理。

如果您發現本社區中有涉嫌抄襲的內容,歡迎發送郵件至: info-contact@alibabacloud.com 進行舉報並提供相關證據,工作人員會在 5 個工作天內聯絡您,一經查實,本站將立刻刪除涉嫌侵權內容。

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.