标签:需要 开发 不能 microsoft 文件中 and 直接 rom sof
有时候,我们需要在一个Activity中调用另一个xml布局文件,即非本Activity所绑定的xml布局文件中的控件,这时候就不能直接findViewById,不然会报错指向空对象,这时就需要像下面这样做。
LayoutInflater factory = LayoutInflater.from(当前类.this);
View layout = factory.inflate(R.layout.你要获取的另一个XML, null);
TextView textview = (TextView) layout.findViewById(R.id.控件ID);
android开发中一个activity如何调用另一个xml中的控件
标签:需要 开发 不能 microsoft 文件中 and 直接 rom sof
原文地址:http://www.cnblogs.com/1925yiyi/p/7465867.html