How are passwords stored?

This commit is contained in:
M66B
2021-03-13 10:44:12 +01:00
parent 22eaac35f9
commit 36ad6dee4f
7 changed files with 95 additions and 5 deletions

View File

@@ -23,6 +23,7 @@ import android.app.NotificationManager;
import android.content.Context;
import android.content.Intent;
import android.graphics.Color;
import android.graphics.Paint;
import android.net.Uri;
import android.os.Build;
import android.os.Bundle;
@@ -76,6 +77,7 @@ public class FragmentPop extends FragmentBase {
private EditText etUser;
private TextInputLayout tilPassword;
private TextView tvCharacters;
private TextView tvPasswordStorage;
private EditText etName;
private ViewButtonColor btnColor;
@@ -138,6 +140,7 @@ public class FragmentPop extends FragmentBase {
etUser = view.findViewById(R.id.etUser);
tilPassword = view.findViewById(R.id.tilPassword);
tvCharacters = view.findViewById(R.id.tvCharacters);
tvPasswordStorage = view.findViewById(R.id.tvPasswordStorage);
etName = view.findViewById(R.id.etName);
btnColor = view.findViewById(R.id.btnColor);
@@ -197,6 +200,14 @@ public class FragmentPop extends FragmentBase {
}
});
tvPasswordStorage.setPaintFlags(tvPasswordStorage.getPaintFlags() | Paint.UNDERLINE_TEXT_FLAG);
tvPasswordStorage.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {
Helper.viewFAQ(v.getContext(), 37);
}
});
btnColor.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View v) {