前端之家收集整理的这篇文章主要介绍了
1.在Activity里怎样获得另一个xml布局文件的控件,
前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。
LayoutInflater factorys = LayoutInflater.from(当前类.this); final View textEntryView = factorys.inflate(R.layout.你要
获取的另一个XML,null); TextView y_type = (TextView) textEntryView.findViewById(R.id.控件ID);
原文链接:https://www.f2er.com/xml/298577.html