私がやろうとしていることはおそらく本当に単純ですが、いくつかの異なる指示に従ったので、うまくいかないようです。基本的に私がやりたいことは、(main_activity)の下のxmlレイアウトでボタンを作成し、Java(MainActivity)でそれを参照し、そのボタンを設定して独自の新しいxmlファイルを開くことです。今のところ、ボタンをクリックすると(エミュレーターではなく携帯電話で)クラッシュします。これは私がこれまでに持っているものです。ご覧いただきありがとうございます。
xml スクリーン 1
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent" >
<TextView
android:id="@+id/tvFirst"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_centerHorizontal="true"
android:text="Application"
android:textSize="30dp" />
<Button
android:id="@+id/b1"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:layout_below="@+id/tvFirst"
android:layout_centerHorizontal="true"
android:layout_marginTop="46dp"
android:text="1"
android:textSize="30dp" />
</RelativeLayout>
ジャワスクリーン1
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.activity_main);
Button b = (Button) findViewById(R.id.b1);
b.setOnClickListener(new View.OnClickListener() {
public void onClick(View v) {
Intent i = new Intent(MainActivity.this, ButtonOne.class);
startActivity(i);
}
});
}
}
xml スクリーン 2
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical" >
<TextView
android:id="@+id/tvButtonOne"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="This is te button one screen" />
</LinearLayout>
ジャワスクリーン2
@Override
protected void onCreate(Bundle savedInstanceState) {
// TODO Auto-generated method stub
super.onCreate(savedInstanceState);
findViewById(R.layout.buttonone);
}
}