I want to send data from registration From to the Firebase. I used the design library and used appcompactEditTex instead of simple EditText
Asked
Active
Viewed 357 times
0
-
1add the code what you are trying, we don't have super powers to predict your code – Masoom Badi Apr 01 '19 at 16:34
-
please add some code where you are getting issue – Muhammad Muzammil Sharif Apr 01 '19 at 16:35
-
2My guess is you're missing a getText() call somewhere. – Gabe Sechan Apr 01 '19 at 16:36
-
final String Useremail = email.getText().toString(); i can get text thought that method form edittext – zubair khan Apr 01 '19 at 16:50
1 Answers
1
Use editText.getText().toString()
to get the actual string

ronginat
- 1,910
- 1
- 12
- 23
-
final String Useremail = email.getText().toString(); final String userPassword = password.getText().toString(); – zubair khan Apr 01 '19 at 16:48
-
-
Can or cannot? what do email and password represent? aren't they AppCompatEditTexts? – ronginat Apr 01 '19 at 17:13