Android之LayoutInflater了解(2019010

2019-01-09  本文已影响3人  watayouxiang

Android之LayoutInflater了解(20190109)

https://www.cnblogs.com/tangs/articles/5913719.html

inflate方法简单说明

/**
    resource        : 布局的资源ID,生成fragment视图
    root            : 视图的父视图,通常我们需要父视图来正确配置组件
    attachToRoot    : 告知布局生成器是否将生成的视图添加给父视图
 */
inflate(int resource, ViewGroup root, boolean attachToRoot)

当root有值:

当root为null:

inflate方法root参数的作用

View的布局

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:orientation="vertical" android:layout_width="match_parent"
    android:layout_height="100dp">

    <TextView
        android:id="@+id/textView"
        android:textSize="30sp"
        android:gravity="center"
        android:background="#ffcccc"
        android:layout_width="match_parent"
        android:layout_height="match_parent" />

</LinearLayout>

其实 View 必须存在于一个父布局中,这样 layout_width 和 layout_height 才会有效,这也是为什么这两个属性叫作 layout_width 和 layout_height,而不是 width 和 height。只有 inflate(int resource, ViewGroup root, boolean attachToRoot) 的第二个参数不为空时,resource 的最外层布局参数才生效

上一篇下一篇

猜你喜欢

热点阅读