Year: 2017

  1. Home
  2. chevron_right
  3. 2017

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…

Functions in Kotlin

Kotlin
In this post I will talk about 5 cool things that functions can do in Kotlin, better than methods in Java.   1. Forget about overloaded methods In Java, when…

Anonymous Functions and Lambdas – Kotlin

Kotlin
Note! This is a post for beginners in Kotlin language. What are lambdas and anonymous functions? In order to define them let’s see what is a function literal. Function literal Function…