我的 android 程序中有 2 种不同的布局,有时我想在它们之间切换。但起初我的程序正在终止并且不起作用,因为未定义布局 2 对象。我怎样才能解决这个问题?
// d and z are obejcts of another layout
Button mainButton1 = (Button) findViewById(R.id.d);
final TextView myTextView1 = (TextView) findViewById(R.id.z);
mainButton1.setOnClickListener(new OnClickListener()
{
@Override
public void onClick(View arg0)
{
myTextView1.setText("Bye!");
}
});