Monthly Archives: January 2011

Android: Stop Activity via back-Button

While Ending an Activity you cannot throw Errors.

To work around this Problem you can Override the onBack Pressed() function.

At the End you have to call finish() to close the application.

@Override
public void onBackPressed() {
try {
foo();
}
catch (Exception e) {
handleException(e);
}
finish();
}


Maya: Work in Progress PKMM Abgabeprojekt

Also das neue Abgabekriterium, was etwas ausgiebiger ist als das aus dem letzten Semester wird eine Simulation von einem Modell der Erde wie sie die Sonne umkreist, und aus dem Modell fliegt eine Rakete aus dem Fenster.

Das ist ein Testrender nach 3 Stunden. Insgesamt habe ich 9 Stunden um die gesamte Animation und Shading fertig zu machen…