如何解决Android动态添加View的问题

来源:爱站网时间:2020-12-12编辑:网友分享
如何解决Android动态添加View的问题?我们在Android动态添加View的时候经常会遇到一些问题,这问题很多用户们都不知道要怎么解决,下面我们就去看看解决Android动态添加View的问题的方法。

如何解决Android动态添加View的问题?我们在Android动态添加View的时候经常会遇到一些问题,这问题很多用户们都不知道要怎么解决,下面我们就去看看解决Android动态添加View的问题的方法。

后台代码

 

    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));

 

看完本文后你知道如何解决Android动态添加View的问题了吗?希望可以帮到大家。如果有疑问可以留言交流,谢谢大家对爱站网站的支持。

上一篇:Android如何使用Dialog

下一篇:如何使用Android Content Provider

您可能感兴趣的文章

相关阅读

热门软件源码

最新软件源码下载