/** * Öffnet die übergebene {@link Activity}. */ protected final void switchActivity(Class<? extends Activity> aActivityClass) { Intent myIntent = new Intent(getApplicationContext(), aActivityClass); startActivityForResult(myIntent, 0); } /** * Bindet eine Property des Models anhand ihres Namens an eine {@link View} anhand ihrer id * und gibt die gebundene {@link View} zurück. */ protected final View bind(String aPropertyname, int aViewId) { return bind(getModel(), aPropertyname, aViewId); } /** * Bindet eine Property des Models anhand ihres Namens an eine {@link View} anhand ihrer id * und gibt die gebundene {@link View} zurück.