Category: Android

Best Android Game Stores

Are you looking for the best android game stores where you can download the games apart from the Google?. This blog post will list out some of the popular and best android game stores available. Best Android Game Stores Amazon Appstore for Android IndieGameStand Gameloft The Humble Store F-Droid GamersGate TegraZone Have you comes across any other game stores for android ?. Feel free to…

Microsoft Band and Android(Java) – Add Permission Tags in the Manifest file

When working with the Microsoft Band using Java for an android app , it is necessary add the following permissions under the uses-permission tag of the AndroidManifest.xml. android.permission.BLUETOOTH com.microsoft.band.service.access.BIND_BAND_SERVICE How to add Permission Tags in the Manifest file to use Band SDK in Java ? The reason for adding this to the manifest file is that the app will be using the capabilities of the…

How to hide virtual keyboard in android using Java?

There are times when you want to hide the virtual keyboard in android. You can easily do that using the InputMethodManager. How to hide virtual keyboard in android using Java ? Just call the hideSoftInputFromWindow method of the InputMethodManager class by passing the token of the current window that contains the focussed view. Below is a sample code snippet demonstrating the usage of InputMethodManager to…