Category Archives: Android

Android Volley Sending data twice

When you use Android Volley Library to make a http post request, the default situation is that the data will be send twice. In order to avoid this, you would need to add the line 2 of the below code … Continue reading

Posted in Android, Java | Tagged , , , , | Leave a comment

Visual Studio Team Foundation Plugin for IntelliJ and Android Studio

I had previously ran a post on how to installing team foundation server plug-in for Eclipse. While I personally do not prefer to use Eclipse, there wasn’t much choice in the past. However, it is now time to rejoice as Microsoft … Continue reading

Posted in Android, Visual Studio | Tagged , , , , , , | Leave a comment

Android NetworkOnMainThreadException

If you encountered NetworkOnMainThreadException while performing a web client call, there is a lazy way to handle the exception. However this method is not highly recommended as it will result in the UI thread being block for other operations. This … Continue reading

Posted in Android | Tagged , , | Leave a comment