内容视图是一个线性布局。我们称它为 llOne,我们会说它在文件 llOne.xml 中。
我要添加的视图也是一个 LinearLayout,但它们位于单独的文件中。我们称它为 llTwo,我们会说它在文件 llTwo.xml 中。
setContentView(R.layout.llOne);
LinearLayout llOne = (LinearLayout) findViewById(R.id.llOne);
LinearLayout llTwo = (LinearLayout) findViewById(R.id.llTwo);
llOne.addView(llTwo); //NullPointerException