首页 诗词 字典 板报 句子 名言 友答 励志 学校 网站地图
当前位置: 首页 > 教程频道 > 移动开发 > Android >

小白求解这两句的意义

2013-07-21 
小白求解这两句的意思String inflater Context.LAYOUT_INFLATER_SERVICELayoutInflater layoutInflater

小白求解这两句的意思
String inflater = Context.LAYOUT_INFLATER_SERVICE;
LayoutInflater layoutInflater = (LayoutInflater) context.getSystemService(inflater);
LinearLayout linearLayout = null;





求解。。。
[解决办法]
获取系统的填充器服务,主要用来渲染画面用的
[解决办法]
这个一般就用来 动态添加布局什么的
[解决办法]
等价于LayoutInflater layoutInflater = LayoutInflater.from(context);
你干脆这样写吧。 一句更好理解一些

上两楼都说得对动态的渲染一个view. 通过
View view = layInflater.inflate(R.layout.xx, null);来得到一个新的view

热点排行