Posts by Catalin Prata

GSON & Realm String array

Solutions
You might know about Realm, a fancy and practical storage option that one can use on Android. Realm is quite fast and it is really easy to work with but…

Android Quiz

Android Quiz
Android Quiz 2017-02-22 Name What is the main difference between FlexboxLayout and LinearLayout? There is no such thing as FlexboxLayout in Android. It is a CSS layout. The significant difference…

How to unzip Gzipped InputStream

Snippets, Solutions
If you are working with HttpURLConnection on Android then you might encounter strange InputStream outputs like when you have a strange character encoding even though on the server side everything…

Get Android OS Version

Snippets
If you ever need to get the version of the OS on which your app runs, you can try this out: android.os.Build.VERSION.SDK_INT And you can use it against(for more check…
keyboard_arrow_up