Creating a Customized PopOver for MapView
The Android developers tutorial guides to create an app that shows a map the user can use to zoom and add overlay items that mark points of interest. Suppose the user wants to display the location of...
View ArticleSteps For Publishing Application On Android Market
Make your application non debuggable Remove the android:debuggable="true" attribute from the <application> element of the manifest. Remove log files, backup files, and other unnecessary...
View ArticleRetrieving Current Network Status in Android
Here is a quick snippet of code which might help to application developers in getting the current status of an Android> device’s data connection. We make use of the ConnectivityManager class to get...
View ArticleHow to change foreground & background colors in a webview.
At times we need to change the font or background color of the webview in Android to make it more readable or to conform to a design of your app. This post will show how simple it can be for an android...
View ArticleAndroid : Save big size image from Camera Application
While working with image saving from media/sd-card to android application‘s local path, I came across with an issue to get big size image as an output. Since android is an open source, so vendors can...
View ArticleMulti-Window/Split-Screen In Android
Multi-window / split-screen in AndroidAndroid Nougat (version 7.0, API level 24) has added multi-window feature for displaying multiple apps on the same screen. On mobile and tablet devices, two apps...
View ArticleAndroid 7.1 – App Shortcuts
With Android 7.1 Nougat, Google has introduced a feature called app shortcuts that will seem familiar to fans of Windows phone and the iPhone. But this feature goes well beyond similar functionality on...
View ArticlePassing Objects via Intent in Android
Hi Coders,Android developers generally pass data between activities and components. If data is primitive type then it is easy to pass via intent. However passing an object is not as simple as a...
View ArticleRemote Logging and it’s importance
Remote Logging and it’s importanceApplication developers have to deal with user reported issues that are hard to reproduce. The considerable amount of time is spent on analyzing issues with rare...
View Article