私の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!");
}
});