Skip to content

Tag: android

ZonedDateTime to Date before Java 8 in early Android

I am trying to replace the ZonedDateTime.toInstant method because it is only available since API 26 for Android. But my app is supposed to support API 19. I want to convert the ZonedDateTime to a Date so i can do something like this: What i want to achieve is the following: I want to calculate the difference …

GlideApp cannot be found

error: cannot find symbol variable GlideApp This is the error I have been getting. I’m using Android studio 3.3.1 and imported these modules for glide. Answer To use generated API in Glide you need to create a class and extend AppGlideModule and use @GlideModule annotation, for example: After this rebui…

Can I use deprecated classes?

Will using deprecated classes cause severe problems to the program? What is the meaning of deprecated? Can I still work with deprecated classes? An example for it is the ProgressDialog view in Android. It deprecated from API 26 and the replacement is the ProgressBar view. What happens if I will still use the …

Using coroutines in a right way

I am implementing the coroutine for first time. I am following MVP pattern for a simple login app. Here is my code flow – The login button clicked will follow this direction – LoginFragment -> LoginPresenter -> Repository -> APIRepository -> RetrofitInterface The login response will fo…