Why I started hating ios Framework

Why I started hating ios Framework

ByUnknown
I am sorry ios developers. But yes, I don't like this Framework. I am an Android developer and I am developing android apps for more than 2.5 years. I really enjoy developing Android apps and implementing it's new features. Things are pretty easyContinue Reading >

Kotlin and Android studio

Kotlin and Android studio

ByUnknown
Kotlin is statically typed programming language. Google has announced kotlin an official language for android.            Kotlin is getting popular among android developers around the globe.  Starting from Android studio 3.0, Android studio will bring support for this  newContinue Reading >

Why kotlin is next programming language

Why kotlin is next programming language

ByUnknown
Before discussing the cool features of Kotlin, We will discuss How Kotlin is good, because a study says programming language features  matter  little compared to the Ecosystem issues when developers evaluate a programming language. Why Kotlin is good : Kotlin compiles to JVMContinue Reading >

Introduction to Kotlin

Kotlin

Introduction to Kotlin

ByUnknown
About: Kotlin is a new programming language by JetBrains, the makers of the world’s best IDES. It  is a statically typed programming language that runs on the java virtual machine and can also be compiled  to  Javascript  source code. It’s primary development isContinue Reading >

Consider static factory methods instead of constructors

Creating and destroying objects

Consider static factory methods instead of constructors

ByUnknown
The normal way for a class to allow a client to obtain an instance of itself is to provide a public constructor. There is a technique that should be a part of every programmer toolkit. A class can provide public static factory method,Continue Reading >

Supporting different languages and cultures in Android

Supporting different cultures in android

Supporting different languages and cultures in Android

ByUnknown
Android app supports different languages and cultures. App includes resources that can be specific to a particular culture or locale. For example App can include locale specific string that can be translated to the language of current locale. It is always a goodContinue Reading >

How to record screen in android using MediaProjectionManager

live screen recording in android

How to record screen in android using MediaProjectionManager

ByUnknown
Starting from the Android lollipop there is a new api called MediaProjectionManager for recording mobile device screen video.           In this session we will learn how it works in android. First we get the MediaProjectionManager using getSystemService()(Available on any context)which provides the interfaceContinue Reading >