Android加载布局的两种方式
2016-07-21 本文已影响152人
敲代码的小新
1.setContentView(R.layout.xxx.xml)
2.LayoutInflater layoutInflater = getLayoutInflater();
layoutInflater.inflate(R.layout.xxx.xml,null);第二个参数填空的话,查看源码得知,就不会有布局参数了。
下面是源码的截图
1.setContentView(R.layout.xxx.xml)
2.LayoutInflater layoutInflater = getLayoutInflater();
layoutInflater.inflate(R.layout.xxx.xml,null);第二个参数填空的话,查看源码得知,就不会有布局参数了。
下面是源码的截图