increase priority of notifications to increase likelihood that buttons are shown

change password mask (fix problem on some devices)
This commit is contained in:
Philipp Crocoll 2015-01-27 05:53:01 +01:00
parent 4905392d47
commit b1cec02040
6 changed files with 993 additions and 991 deletions

View File

@ -928,11 +928,13 @@ namespace keepass2android
if (_showPassword)
{
password.TransformationMethod = null;
//password.TransformationMethod = null;
password.InputType = InputTypes.TextVariationVisiblePassword ;
}
else
{
password.TransformationMethod = PasswordTransformationMethod.Instance;
//password.TransformationMethod = PasswordTransformationMethod.Instance;
password.InputType = InputTypes.ClassText | InputTypes.TextVariationPassword;
}
}
}

File diff suppressed because it is too large Load Diff

View File

@ -117,7 +117,7 @@ namespace keepass2android
_ctx.GetString(Resource.String.menu_copy_pass),
GetPendingIntent(Intents.CopyPassword, Resource.String.menu_copy_pass)));
notificationBuilder.SetPriority((int)Android.App.NotificationPriority.High);
notificationBuilder.SetPriority((int)Android.App.NotificationPriority.Max);
var notification = notificationBuilder.Build();
notification.DeleteIntent = CreateDeleteIntent(NotifyCombined);
_notificationManager.Notify(NotifyCombined, notification);