bt1.findViewById(R.id.layout);也能用为什么?
private Button bt1;
bt1.findViewById(R.id.layout);
和
bt1 = (Button)findViewById(R.id.layout);
的区别是什么
private Button bt1;
bt1.findViewById(R.id.layout);
和
bt1 = (Button)findViewById(R.id.layout);
的区别是什么
2017-03-08
举报