Posts by Laura Suciu

Kotlin Common Questions

Kotlin
1. Where should we keep constants in Kotlin? if you need constants to be accessed globally use const as top-level properties (not inside a class). In order to do this create…

Kotlin – for, while, if, when

Kotlin
Control flow: for, while, if, when This post is for beginners who want to start learning Kotlin language and already know Java. We will show simple examples of for, while, if,…

Android Activity launchMode

Articles
In Android you can specify activity launchMode. You can do this either from AndroidManifest.xml file, either using intents with flags. Some of the flags produce the same effects like those…

Android Add Game Leaderboard

Tutorial
In order to display leaderboards from your game you will have to set up your project and to be signed in. Below you will learn how to do this. Project…

Android ViewPager Tutorial

Tutorial
In Android, if you need to swipe from right to left or vice-versa in order to see different data, you can use a ViewPager. In order to use it, you…

Android ViewPager Cube Animation

Tutorial
After trying some libraries in order to make a cube animation for my viewPager, I realized that is pretty easy to do this. Android provides an interface called ViewPager.PageTransformer and…

Android – HTML in textView

Articles, Solutions
Display HTML format First we will present below what are the supported tags for a textView and what are not supported. You can skip this section if you are already…
keyboard_arrow_up