Back to project page RobitDroid.
The source code is released under:
Copyright (c) 2011 Kenny Meyer Permission is hereby granted, free of charge, to any person obtaining a copy of this software and associated documentation files (the "Software"), to deal in the Softwa...
If you think the Android project RobitDroid listed in this page is inappropriate, such as containing malicious code/tools or violating the copyright, please email info at java2s dot com, thanks.
package com.robitdroid; /*from w ww. ja va 2 s.co m*/ import android.app.Activity; import android.content.Intent; import android.os.Bundle; import android.util.Log; import android.view.View; import android.widget.TextView; import com.robitdroid.robit.Generator; /** * Show Robit with the guessed number. * <p/> * Author: Kenny Meyer <knny.myer@gmail.com> * Date: 11/9/11 * Time: 5:36 PM */ public class FinalScreen extends Activity { private Generator generator = Generator.getInstance(); @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.final_screen); Log.d("DEBUG", String.valueOf(generator.getFinal_number())); TextView final_number = (TextView) findViewById(R.id.final_number); final_number.setText(String.valueOf(generator.getFinal_number())); } /** * Restart game. * * @param view */ public void restartButtonClicked(View view) { generator.reset(); Intent i = new Intent(view.getContext(), GameScreen.class); startActivity(i); } /** * "Go to main menu" button callback * * @param view */ public void goToMainMenuButtonClicked(View view) { generator.reset(); Intent i = new Intent(view.getContext(), RobitDroid.class); startActivity(i); } @Override public void onBackPressed() { // Don't do anything when back button pressed. return; } }