Androidについて学んでいるので、ご容赦ください。私がやろうとしているのは、ボタンをクリックしたときにアクティビティを開くことです。これは私の主な活動の私のコードです
public class MainPage extends Activity {
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
super.onCreate(savedInstanceState);
setContentView(R.layout.main);
Button restaurants = (Button) findViewById(R.id.widget88);
restaurants.setOnClickListener(new View.OnClickListener() {
public void onClick(View view) {
Intent myIntent = new Intent(view.getContext(), AZRestaurants.class);
startActivityForResult(myIntent, 0);
}
});
//Button location = (Button) findViewById(R.id.location);
//location.setOnClickListener(new View.OnClickListener() {
//public void onClick(View view) {
// Intent myIntent = new Intent(view.getContext(), Location.class);
// startActivity(myIntent);
//}
// });
}
最初のボタン(レストラン)を実装するだけで、プログラムは問題なく起動します。
しかし、コメントアウトしたボタンを実装しようとすると、起動に失敗します。はい、マニフェスト ファイルにアクティビティを追加しました。
誰でも私を助けてもらえますか?
ありがとう。