BREAKING:

Paresh Mayani

CEO & Co-Founder at SolGuruz® | Organiser @ GDG Ahmedabad | Top 0.1% over StackOverflow | 15+ years experienced Tech Consultant | Helping startups with Custom Software Development

Android – Bullets in ListView

Problem: How to show bullets in ListView/TextView in Android? Description:  There is no easy way to show indentation in ListView/TextView, so here i made a trick and define a drawable to display Bullet at left side of each item of the ListView. And i have defined a custom listview row file and used the same […]

Read More

Android – Multi Column ListView

Description: I know many novice android programmer are facing problem to implement multi-column listview or in confusion to implement this kind of view. so let me write here to implement multi columnr listview by using ListView itself.

Read More

Android – Check whether the SD-card is available or not

Problem: How to check whether the SD-card is available or not programmatically? Solution:

Read More

Android – Loading remote images

Problem: How to load images from web/remote images? Description: This tutorial is going to be a demo for loading images resides at a remote location. For this tutorial, i have implemented AsyncTask to show prorgress bar until the whole image gets loaded fully. Solution: FYI, i have made progress bar visible inside the onPreExecute() method. […]

Read More

Android – SAX Parsing Example

Problem: how to use SAX to parse XML? This tutorial is for the Android novice programmer who want to learn how to parse XML using SAX parser. I have also used Custom ListView inside this tutorial to display parsing result into the ListView. If you don’t know how to define a custom adapter for ListView […]

Read More

Android – Develop android application for Tablets only

Problem: How do we develop Honeycomb Android application for the Tablets only? Description: After Android has released Honeycomb 3.0 SDK for the development of android application for Android tablets, most of android developers are confused on “how do i develop android application targets for both or for specificly for Tablets or Mobile only”. But today […]

Read More

Android – Place Market link inside the App

Problem: How to place a Market link inside the Android application? Description: While answering on StackOverflow, I came across one question on placing market link inside the application and I thought it’s very useful and I thought to document it. You might came across the same problem. There are many ways to put link but […]

Read More