从xml文件中扩展视图意味着什么?

时间:2016-04-23 07:43:38

标签: android android-recyclerview

嘿,我是Android的新手,有人可以解释一下我从xml文件中详细介绍一个视图是什么意思。

我试图在arraylist上显示一些关于RecyclerView的数据。

1 个答案:

答案 0 :(得分:0)

将布局XML文件实例化为其对应的View对象。它永远不会直接使用。相反,使用getLayoutInflater()getSystemService(Class)检索已连接到当前上下文并为正在运行的设备正确配置的标准LayoutInflater实例。例如:

LayoutInflater inflater = (LayoutInflater)context.getSystemService
  (Context.LAYOUT_INFLATER_SERVICE);

official documentation here