findViewById为空

 

super.onCreate(savedInstanceState);

final Button button_dialer = (Button) findViewById(R.id.buttonId_dialer);

setContentView(R.layout.main);

上面这段代码的button_dialer为空,是因为setContentView写在了后面的原因。

 

 

super.onCreate(savedInstanceState);

setContentView(R.layout.main);

final Button button_dialer = (Button) findViewById(R.id.buttonId_dialer);

这样就可以了。。。。

 

 

你可能感兴趣的:(findViewById为空)