diff options
author | Zeapo <mohamed@zenadi.com> | 2014-08-01 14:01:54 +0100 |
---|---|---|
committer | Zeapo <mohamed@zenadi.com> | 2014-08-01 14:01:54 +0100 |
commit | c19191a3d5c625df1f1c6bf233be8f7a6411a0e1 (patch) | |
tree | 389ff0b54723cdc116d4b60a2d18a79ba2f13a45 | |
parent | 4fadd0f81fe17602c916a99d86a5df01b3ec433d (diff) |
avoid adding anything when getting back from an activity
-rw-r--r-- | app/src/main/java/com/zeapo/pwdstore/PasswordStore.java | 23 |
1 files changed, 16 insertions, 7 deletions
diff --git a/app/src/main/java/com/zeapo/pwdstore/PasswordStore.java b/app/src/main/java/com/zeapo/pwdstore/PasswordStore.java index 645513a2..f525d6d7 100644 --- a/app/src/main/java/com/zeapo/pwdstore/PasswordStore.java +++ b/app/src/main/java/com/zeapo/pwdstore/PasswordStore.java @@ -1,7 +1,6 @@ package com.zeapo.pwdstore; import android.app.Activity; -import android.app.Fragment; import android.app.FragmentManager; import android.app.FragmentTransaction; import android.content.Intent; @@ -16,19 +15,16 @@ import com.zeapo.pwdstore.utils.PasswordItem; import com.zeapo.pwdstore.utils.PasswordRepository; import org.apache.commons.io.FileUtils; -import org.apache.commons.io.filefilter.FileFilterUtils; -import org.eclipse.jgit.lib.Repository; -import org.eclipse.jgit.transport.CredentialItem; import java.io.File; -import java.io.FileFilter; import java.io.IOException; import java.util.Stack; public class PasswordStore extends Activity implements ToCloneOrNot.OnFragmentInteractionListener, PasswordFragment.OnFragmentInteractionListener { - private int listState = 0; private Stack<Integer> scrollPositions; + /** if we leave the activity to do something, do not add any other fragment */ + private boolean leftActivity = false; @Override protected void onCreate(Bundle savedInstanceState) { @@ -49,6 +45,12 @@ public class PasswordStore extends Activity implements ToCloneOrNot.OnFragmentI } @Override + public void onPause() { + super.onPause(); + this.leftActivity = true; + } + + @Override public boolean onCreateOptionsMenu(Menu menu) { // Inflate the menu; this adds items to the action bar if it is present. getMenuInflater().inflate(R.menu.pwdstore, menu); @@ -98,7 +100,10 @@ public class PasswordStore extends Activity implements ToCloneOrNot.OnFragmentI } private void checkLocalRepository() { -// final File localDir = new File(getFilesDir() + "/store/.git"); + // if we are coming back from gpg do not anything + if (this.leftActivity) + return; + checkLocalRepository(PasswordRepository.getWorkTree()); } @@ -141,6 +146,8 @@ public class PasswordStore extends Activity implements ToCloneOrNot.OnFragmentI fragmentTransaction.replace(R.id.main_layout, passFrag, "PasswordsList"); fragmentTransaction.commit(); } + + this.leftActivity = false; } /** Stack the positions the different fragments were at */ @@ -157,6 +164,8 @@ public class PasswordStore extends Activity implements ToCloneOrNot.OnFragmentI } else { try { try { + this.leftActivity = true; + Intent intent = new Intent(this, PgpHandler.class); intent.putExtra("PGP-ID", FileUtils.readFileToString(PasswordRepository.getFile("/.gpg-id"))); intent.putExtra("NAME", item.getName()); |