我正在“尝试”制作一个 android 应用程序。我正在努力做到这一点,以便当我单击一个按钮时,它会将我带到另一个布局。我已经正确地完成了其他所有操作,我很确定......除了这个错误之外还有 0 个错误。无法访问的代码。
@Override
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;
Button bUtuube = (Button) findViewById(R.id.Utuube);
bUtuube.setOnClickListener(new View.OnClickListener() {
我收到无法访问的代码错误Button bUtuube = (Button) findViewById(R.id.Utuube)
。那就是出现红线的地方。
干杯