У меня есть приведенная ниже форма XML
для сброса пароля, где пользователь вводит адрес электронной почты и нажимает кнопку отправить:
<?xml version="1.0" encoding="utf-8"?>
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent"
tools:context=".ui.main.LoginFragment">
<LinearLayout
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="@color/colorPrimaryDark"
android:gravity="center"
android:orientation="vertical"
android:padding="@dimen/activity_horizontal_margin">
<!-- TODO: Update blank fragment layout -->
<TextView
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/hello_blank_fragment" />
<EditText // This is read as null!
android:id="@+id/myEmail"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:ems="10"
android:inputType="textEmailAddress" />
<Button
android:id="@+id/reset"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="Reset" />
</LinearLayout>
</FrameLayout>
А в файле фрагмента я имею:
class ResetPasswordFragment : Fragment() {
companion object {
fun newInstance() = ResetPasswordFragment()
}
override fun onCreateView(inflater: LayoutInflater, container: ViewGroup?,
savedInstanceState: Bundle?): View {
return inflater.inflate(R.layout.fragment_reset_password, container, false)
}
override fun onActivityCreated(savedInstanceState: Bundle?) {
super.onActivityCreated(savedInstanceState)
val auth = FirebaseAuth.getInstance()
val email = myEmail.text.toString().trim() // This is null!
reset.setOnClickListener {
Toast.makeText(context, "Email entered is: $email", Toast.LENGTH_SHORT).show()
auth.sendPasswordResetEmail(email)
.addOnCompleteListener({ task ->
if (task.isSuccessful) {
Toast.makeText(context, "We have sent you instructions to reset your password!", Toast.LENGTH_SHORT).show()
} else {
Toast.makeText(context, "Failed to send reset email!: ${task.exception}", Toast.LENGTH_SHORT).show()
}
})
}
}
}
В val email = myEmail.text.toString().trim()
он дает null
, в то время как val email = myEmail.text
показывает правильный ввод как Editable
, но это не принимается auth.sendPasswordResetEmail(email)
, поскольку вход должен быть String