美文网首页Android精选Android知识程序员
动态布局LayoutInflater.inflate() 方法解

动态布局LayoutInflater.inflate() 方法解

作者: 增其Mrlu | 来源:发表于2017-10-31 11:56 被阅读0次

    我们开发时,有时候会有动态加载布局的需求,A情况加载一个布局,B情况加载另一个布局。

    下面简单介绍一下动态布局涉及到的知识点以及用到的函数。

    1.LayoutInflater的用法

    LayoutInflater可以用来实例化 XML文件,使它成为一个View对象。

    1.1 LayoutInflater实例化

    ​ 有三种方法可以将LayoutInflater实例化:

    • LayoutInflater inflater1 = LayoutInflater.from(this);
    • LayoutInflater inflater2 = getLayoutInflater();
    • LayoutInflater inflater3 = (LayoutInflater) getSystemService(LAYOUT_INFLATER_SERVICE);
      第一种写法跟第三种写法本质是一样的。

    拿到LayoutInflater实例之后,可以调用它的inflate()方法加载布局了。

    1.2 inflate()的两种常用方法

    [inflate](http://www.android-doc.com/reference/android/view/LayoutInflater.html#inflate(int, android.view.ViewGroup))(int resource,ViewGroup root)

    [inflate](http://www.android-doc.com/reference/android/view/LayoutInflater.html#inflate(int, android.view.ViewGroup, boolean))(int resource,ViewGroup root, boolean attachToRoot)

    第一个参数resource:ID for an XML layout resource to load (e.g., R.layout.main_page)
    第二个参数root:布局的外部再嵌套一层父布局,不需要可以填null.
    第三个参数attachToRoot:是否把选取的视图加入到root中。

    引用程大治的分析:

    如果attachToRoot是true的话,那第一个参数的layout文件就会被填充并附加在第二个参数所指定的ViewGroup内。方法返回结合后的View,根元素是第二个参数ViewGroup。如果是false的话,第一个参数所指定的layout文件会被填充并作为View返回。这个View的根元素就是layout文件的根元素。不管是true还是false,都需要ViewGroup的LayoutParams来正确的测量与放置layout文件所产生的View对象。

    1.3 举个例子

    LayoutInflater layoutInflater = LayoutInflater.from(this);
    View bottom_tab = layoutInflater.inflate(R.layout.include_bottom_tab,null);
    
    LinearLayout linearLayout = (LinearLayout) findViewById(R.id.XX);
    linearLayout.addView(bottom_tab);
    

    这样就可以动态地将指定的布局文件加到指定XX布局中了。

    如果上述的include_bottom_tab的布局文件是类似这样的,没有父布局:

    <Button 
        xmlns:android="http://schemas.android.com/apk/res/android"  
        android:layout_width="30dp"  
        android:layout_height="80dp"  
        android:text="Button" >  
    </Button>  
    

    那么layout_xx属性都会无效。详见下一部分的解释。

    如果如果上述的include_bottom_tab的布局文件有父布局,那么可以直接设置布局的具体位置,如居中等。

    2.关于layout_XX

    首先认识一下layout_width和layout_height这个两个属性 。
    顾名思义,layout_xx 是用来设置当前View在布局中的大小或者位置的,而不是我们默以为的设置View的大小。

    同时也有人会有这样的疑问,为什么布局最外层的布局又可以设置大小呢? 这是因为在setContentView()方法中,Android会自动在布局文件的最外层再嵌套一个FrameLayout,所以layout_width和layout_height属性才会有效果。

    看这张图片可以更好地理解:(图来自@郭霖博客)
    image.png

    相关文章

      网友评论

        本文标题:动态布局LayoutInflater.inflate() 方法解

        本文链接:https://www.haomeiwen.com/subject/dawckxtx.html