added copy password with a timer

This commit is contained in:
knuthy 2014-09-06 14:54:53 +02:00
parent f0152ecfa2
commit 51b3334000
7 changed files with 20 additions and 3 deletions

View file

@ -1,13 +1,13 @@
apply plugin: 'com.android.application'
android {
compileSdkVersion 20
buildToolsVersion "20.0.0"
compileSdkVersion 19
buildToolsVersion "19.1.0"
defaultConfig {
applicationId "com.zeapo.pwdstore"
minSdkVersion 14
targetSdkVersion 20
targetSdkVersion 19
versionCode 6
versionName "1.1-b1"
}

View file

@ -5,6 +5,8 @@ import android.app.Activity;
import android.app.AlertDialog;
import android.app.PendingIntent;
import android.app.ProgressDialog;
import android.content.ClipData;
import android.content.ClipboardManager;
import android.content.Context;
import android.content.DialogInterface;
import android.content.Intent;
@ -57,6 +59,8 @@ public class PgpHandler extends Activity implements OpenPgpServiceConnection.OnB
private String accountName = "";
SharedPreferences settings;
private Activity activity;
ClipboardManager clipboard;
private ProgressDialog bindingDialog;
@ -78,6 +82,7 @@ public class PgpHandler extends Activity implements OpenPgpServiceConnection.OnB
super.onCreate(savedInstanceState);
this.activity = this;
this.clipboard = (ClipboardManager) getSystemService(CLIPBOARD_SERVICE);
// some persistance
settings = PreferenceManager.getDefaultSharedPreferences(this);
@ -128,6 +133,9 @@ public class PgpHandler extends Activity implements OpenPgpServiceConnection.OnB
setResult(RESULT_OK);
finish();
return true;
case R.id.copy_password:
ClipData clip = ClipData.newPlainText("pgp_handler_result_pm", ((TextView) findViewById(R.id.crypto_password_show)).getText());
clipboard.setPrimaryClip(clip);
}
return super.onOptionsItemSelected(item);
}
@ -212,6 +220,10 @@ public class PgpHandler extends Activity implements OpenPgpServiceConnection.OnB
@Override
protected void onPostExecute(Boolean b) {
ClipData clip = ClipData.newPlainText("pgp_handler_result_pm", "MyPasswordIsDaBest!");
clipboard.setPrimaryClip(clip);
//clear password
((TextView) findViewById(R.id.crypto_password_show)).setText("");
((TextView) findViewById(R.id.crypto_extra_show)).setText("");

Binary file not shown.

After

Width:  |  Height:  |  Size: 235 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 191 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 263 B

Binary file not shown.

After

Width:  |  Height:  |  Size: 345 B

View file

@ -1,4 +1,9 @@
<menu xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
tools:context="com.zeapo.pwdstore.crypto.PgpHandler" >
<item android:title="Copy password"
android:icon="@drawable/ico_copy"
android:showAsAction="ifRoom"
android:id="@+id/copy_password"
/>
</menu>