From b5faaed49616578372a698f9a123d5a794593d20 Mon Sep 17 00:00:00 2001 From: Matthew Wong Date: Sat, 18 Jul 2015 14:14:00 -0400 Subject: Use monospace font and add show passphrase checkbox --- app/src/main/java/com/zeapo/pwdstore/SshKeyGen.java | 21 ++++++++++++++++++++- app/src/main/res/layout/fragment_pwgen.xml | 3 ++- app/src/main/res/layout/fragment_ssh_keygen.xml | 11 ++++++++++- app/src/main/res/values/strings.xml | 1 + 4 files changed, 33 insertions(+), 3 deletions(-) diff --git a/app/src/main/java/com/zeapo/pwdstore/SshKeyGen.java b/app/src/main/java/com/zeapo/pwdstore/SshKeyGen.java index dd9ef5ce..c7f214f3 100644 --- a/app/src/main/java/com/zeapo/pwdstore/SshKeyGen.java +++ b/app/src/main/java/com/zeapo/pwdstore/SshKeyGen.java @@ -14,12 +14,16 @@ import android.os.Bundle; import android.preference.PreferenceManager; import android.support.v7.app.AlertDialog; import android.support.v7.app.AppCompatActivity; +import android.text.InputType; import android.view.LayoutInflater; import android.view.View; import android.view.ViewGroup; import android.view.inputmethod.InputMethodManager; import android.widget.ArrayAdapter; import android.widget.Button; +import android.widget.CheckBox; +import android.widget.CompoundButton; +import android.widget.EditText; import android.widget.Spinner; import android.widget.TextView; import android.widget.Toast; @@ -42,7 +46,7 @@ public class SshKeyGen extends AppCompatActivity { @Override public View onCreateView(LayoutInflater inflater, ViewGroup container, Bundle savedInstanceState) { - View v = inflater.inflate(R.layout.fragment_ssh_keygen, container, false); + final View v = inflater.inflate(R.layout.fragment_ssh_keygen, container, false); Spinner spinner = (Spinner) v.findViewById(R.id.length); Integer[] lengths = new Integer[]{2048, 4096}; @@ -50,6 +54,21 @@ public class SshKeyGen extends AppCompatActivity { android.R.layout.simple_spinner_dropdown_item, lengths); spinner.setAdapter(adapter); + CheckBox checkbox = (CheckBox) v.findViewById(R.id.show_passphrase); + checkbox.setOnCheckedChangeListener(new CompoundButton.OnCheckedChangeListener() { + @Override + public void onCheckedChanged(CompoundButton buttonView, boolean isChecked) { + EditText editText = (EditText) v.findViewById(R.id.passphrase); + int selection = editText.getSelectionEnd(); + if (isChecked) { + editText.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_VISIBLE_PASSWORD); + } else { + editText.setInputType(InputType.TYPE_CLASS_TEXT | InputType.TYPE_TEXT_VARIATION_PASSWORD); + } + editText.setSelection(selection); + } + }); + return v; } } diff --git a/app/src/main/res/layout/fragment_pwgen.xml b/app/src/main/res/layout/fragment_pwgen.xml index 072a78a9..da436d8d 100644 --- a/app/src/main/res/layout/fragment_pwgen.xml +++ b/app/src/main/res/layout/fragment_pwgen.xml @@ -21,7 +21,8 @@ android:layout_marginBottom="8dp" android:editable="false" android:textIsSelectable="true" - android:inputType="textVisiblePassword"/> + android:inputType="textVisiblePassword" + android:fontFamily="monospace"/> + android:inputType="textPassword" + android:fontFamily="monospace"/> + + Generate Copy Provide this public key to your Git server. + Show passphrase OK -- cgit v1.2.3