Skip to content
Advertisement

Android Retrofit Call pass response.body() as paramater for processing

I’m wondering how to pass the response.body() as paramater in order to further process it. Since now i could pass it only to a Toast, or setText of a textView, and it works just fine. But if i try to pass it to a function which saves it to SharedPrefs or something like it just passes a null object. I don’t get the point why the first is working, but the second not, where’s the difference?

My JSon response body looks like this:

JavaScript

My Pojo like this:

JavaScript

The function where I do the Call (it’s called after hitting the login button):

JavaScript

Any help will be appreciated. Thanks in Advance!

Advertisement

Answer

You forgot to call editor.apply(); or editor.commit(); in order to save the changes.

User contributions licensed under: CC BY-SA
5 People found this is helpful
Advertisement