0

私は最初の真の Android アプリに数週間取り組んでいますが、ちょっとした問題に直面しています。Android ADK で Eclipse を使用するアプリは、サイトにあるデータベースに接続できますが、次のアクティビティに移動しようとすると機能しません。何が問題ですか?

Login.Java スニペット:

   success = json.getInt(TAG_SUCCESS);
            if (success == 1) {
                Log.d("Login Successful!", json.toString());
                Intent n = new Intent(Login.this, ReadComments.class);
                finish();
                startActivity(n);
                return json.getString(TAG_MESSAGE);

ReadComments.class スニペット:

public class ReadComments extends Activity{

 @Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.read_comments);
}




@Override
public boolean onCreateOptionsMenu(Menu menu)
{
super.onCreateOptionsMenu(menu);
menu.add("Register")
    .setIntent(new Intent(this,Register.class));
menu.add("New Reservation")
    .setIntent(new Intent(this, NewReservation.class));
menu.add("About Luxury Parking")
.setIntent(new Intent(this, Aboutus.class));
return true;


}

}
4

2 に答える 2