Ejemplo n.º 1
0
  @Override
  public void onPause() {
    super.onPause();
    // Save the needed preferences
    SharedPreferences.Editor editor = getSharedPreferences(PREFS_NAME, 0).edit();
    // Load the selected items
    Sector selected = getSelectedSector();
    // Dump them all into the right places and save
    editor.putString(PREF_LAST_SYSTEM, selected.getSystem());
    editor.putString(PREF_LAST_SECTOR_APLHA, selected.getAplhaCoord());
    editor.putString(PREF_LAST_SECTOR_NUM, selected.getNumCoord());
    editor.commit();

    data.close();
  }