android中可否将xml中的布局读取成为一个view
发布网友
发布时间:2024-10-21 00:51
我来回答
共1个回答
热心网友
时间:2024-11-12 21:15
可以
在Activity的oncreate方法中调用
LayoutInflater inflater =(LayoutInflater)getSystemService(Context.LAYOUT_INFLATER_SERVICE);
View view =inflater.inflate(R.layout.main, null);
就可以将main.xml转换为view