simbiose / Encryption

Encryption is a simple way to encrypt and decrypt strings on Android and Java project.
MIT License
354 stars 79 forks source link

EditText text not being recognized as String #19

Open CSumm opened 6 years ago

CSumm commented 6 years ago

I'm trying to encrypt text from an EditText field, which is input by the user assigned an equated variable which goes through the encryption process. It does not recognize [EditText].text as a string but an editable. Is there any way to use user's input instead of hardcoding a string?

ademar111190 commented 6 years ago

Interesting. I'll study to change the signature to CharSequence so you can use the Editable and how is using the String can continue using it without problems.

parshav commented 5 years ago

Shouldn't have a problem in just using the toString of the charSequence for this.