一手遮天 AndroID - vIEw(布局类): 通过 inflate 动态加载布局文件示例如下:项目地址 https://github.com/webabcd/AndroidDemo
作者 webabcd
/vIEw/layout/InflateDemo1.java
/** * 演示如何通过 inflate 动态加载布局文件 * * 有 3 种方式 * 1、VIEw vIEw = VIEw.inflate(context, int resource, VIEwGroup root); * 相当于 LayoutInflater.from(context).inflate(int resource, VIEwGroup root, true); * 2、VIEw vIEw = LayoutInflater.from(context).inflate(int resource, VIEwGroup root); * 相当于 LayoutInflater.from(context).inflate(int resource, VIEwGroup root, true); * 3、VIEw vIEw = LayoutInflater.from(context).inflate(int resource, VIEwGroup root, boolean attachToRoot); * * 也就是说只要明白下面这个方法就行了 * VIEw vIEw = LayoutInflater.from(context).inflate(int resource, VIEwGroup root, boolean attachToRoot); * resource - 需要加载的布局文件的资源 ID * root - 父容器(指定父容器后,才能计算出动态加载的布局文件的根布局中的 wIDth, height 之类的属性) * attachToRoot - 是否将获取到的 vIEw 添加到父容器中(如果指定的父容器是 null,则此值无论你传的是什么,都视为 false) * 返回值就是获取到的 vIEw */package com.webabcd.androIDdemo.vIEw.layout;import androIDx.appcompat.app.AppCompatActivity;import androID.os.Bundle;import androID.vIEw.LayoutInflater;import androID.vIEw.VIEw;import androID.vIEw.VIEwGroup;import androID.Widget.button;import androID.Widget.linearLayout;import com.webabcd.androIDdemo.R;public class InflateDemo1 extends AppCompatActivity { private linearLayout _container; private button _button1; private button _button2; private button _button3; @OverrIDe protected voID onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentVIEw(R.layout.activity_vIEw_layout_inflatedemo1); _container = findVIEwByID(R.ID.container); _button1 = findVIEwByID(R.ID.button1); _button2 = findVIEwByID(R.ID.button2); _button3 = findVIEwByID(R.ID.button3); // 获取当前 activity 的根布局的父容器 VIEwGroup parent = getwindow().getDecorVIEw().findVIEwByID(androID.R.ID.content); // 获取当前 activity 的根布局(以本例为例,其获取到的结果和 _container 是一样的) linearLayout root = (linearLayout)parent.getChildAt(0); sample(); } private voID sample() { _button1.setonClickListener(new VIEw.OnClickListener() { @OverrIDe public voID onClick(VIEw vIEw) { // 动态加载指定的布局文件,并指定其父容器,并自动添加到此父容器中(下面 3 句代码是一样的) // VIEw layoutVIEw = VIEw.inflate(VIEwDemo4.this, R.layout.vIEw_vIEw_layout_inflatedemo1, _root); // VIEw layoutVIEw = LayoutInflater.from(VIEwDemo4.this).inflate(R.layout.vIEw_vIEw_layout_inflatedemo1, _root); VIEw layoutVIEw = LayoutInflater.from(InflateDemo1.this).inflate(R.layout.vIEw_vIEw_layout_inflatedemo1, _container, true); } }); _button2.setonClickListener(new VIEw.OnClickListener() { @OverrIDe public voID onClick(VIEw vIEw) { // 动态加载指定的布局文件,并指定其父容器,但是不自动添加到此父容器中 VIEw layoutVIEw = LayoutInflater.from(InflateDemo1.this).inflate(R.layout.vIEw_vIEw_layout_inflatedemo1, _container, false); // 手动将获取到的 vIEw 添加到指定的父容器中 _container.addVIEw(layoutVIEw); } }); _button3.setonClickListener(new VIEw.OnClickListener() { @OverrIDe public voID onClick(VIEw vIEw) { // 动态加载指定的布局文件,但是不指定其父容器 VIEw layoutVIEw = LayoutInflater.from(InflateDemo1.this).inflate(R.layout.vIEw_vIEw_layout_inflatedemo1, null); // 手动将获取到的 vIEw 添加到指定的父容器中 // 请运行本例看实际效果,由于 inflate 的时候未指定父容器,所以加载的 vIEw 的高度计算是有问题的 _container.addVIEw(layoutVIEw); } }); }}
/layout/activity_vIEw_layout_inflatedemo1.xml
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:orIEntation="vertical" androID:ID="@+ID/container"> <button androID:ID="@+ID/button1" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:textAllCaps="false" androID:text="inflate 说明 1"/> <button androID:ID="@+ID/button2" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:textAllCaps="false" androID:text="inflate 说明 2"/> <button androID:ID="@+ID/button3" androID:layout_wIDth="wrap_content" androID:layout_height="wrap_content" androID:textAllCaps="false" androID:text="inflate 说明 3"/></linearLayout>
/layout/vIEw_vIEw_layout_inflatedemo1.xml
<?xml version="1.0" enCoding="utf-8"?><linearLayout xmlns:androID="http://schemas.androID.com/apk/res/androID" androID:layout_wIDth="match_parent" androID:layout_height="100dp" androID:background="@color/blue"> <TextVIEw androID:layout_wIDth="match_parent" androID:layout_height="match_parent" androID:text="layout" androID:textcolor="@color/white"/></linearLayout>
总结项目地址 https://github.com/webabcd/AndroidDemo
作者 webabcd
以上是内存溢出为你收集整理的一手遮天 Android - view(布局类): 通过 inflate 动态加载布局文件全部内容,希望文章能够帮你解决一手遮天 Android - view(布局类): 通过 inflate 动态加载布局文件所遇到的程序开发问题。
如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。
欢迎分享,转载请注明来源:内存溢出
评论列表(0条)