layoutinflater.from
时间: 2023-04-26 22:04:20 浏览: 400
Android LayoutInflater深入分析及应用
LayoutInflater.from() 方法是用来获取一个 LayoutInflater 对象的,它可以将 XML 布局文件转换成 View 对象。使用方法为:LayoutInflater.from(context).inflate(R.layout.xxx, parent, attachToRoot),其中 context 是应用程序上下文,R.layout.xxx 是布局文件的资源 ID,parent 是父 View,attachToRoot 是布尔值,表示是否将生成的 View 添加到 parent 中。
阅读全文