bt1=(Button) findViewById(R.id.button1); 实现这个实例化得时候出现:Unreachable code
public boolean onCreateOptionsMenu(Menu menu) {
// Inflate the menu; this adds items to the action bar if it is present.
getMenuInflater().inflate(R.menu.main, menu);
return true;
bt1=(Button) findViewById(R.id.button1);
这里出现:Unreachable 的错误 这是怎么回事儿。
}