xamarin android edittext password
Phunction
281
Reputation points
I have run into a weird problem with android 12, my previous working edittext to get a password is not working properly.
EditText Pass = FindViewById<EditText>(Resource.Id.login_password);
Pass.Text now returns small dots and the last typed character.
I have tried the following:
android:inputType="text|textPassword"
android:password="true"
and combinations thereof, but I cannot find a way to retrieve the actual entered text unless I change to a plain text box.
Not sure what changed.
Sign in to answer