下面为大家总结了一个方案:
LayoutInflater inflater = LayoutInflater.from (当前类);
View view = inflater.inflate(R.layout.需要引用的XML文件名,null);
Button button = (Button)view.finndViewById(R.id.需要引用的ID名);
如果一行代码写完的话:
Button button = (Button) LayoutInflater.from(当前类).inflate(R.layout.需要获取的xml文件名,null).findViewById(R.id.控件ID);
以上就是关于Activity或者Fragment引用非此类XML文件的内容了,希望能帮助到您!