The warning is
None of the following functions can be called with the arguments supplied. setText(CharSequence!) defined in com.google.android.material.textfield.TextInputEditText setText(Int) defined in com.google.android.material.textfield.TextInputEditText
Your code shows
datais of typeUserDto. I don't know what that class looks like but it has a field calledphoneNumber. This is what you are passing tosetText(). I can't tell what type thisphoneNumberis because you haven't shown us yourUserDtoclass but the error tells us that it's neither anIntnorCharSequence, which it needs to be. You can try to do this maybe to make it work