ExpandableListView on Android
ListView is pretty widely used. There are situations when you would like to group/categorize your list items. To achieve such a thing on Android, you would probably use the ExpandableListView…. Read more »
ListView is pretty widely used. There are situations when you would like to group/categorize your list items. To achieve such a thing on Android, you would probably use the ExpandableListView…. Read more »
Here comes a new update to the ADT plugin for eclipse and SDK tools. After you update the SDK tools(r7) from the Android SDK manager or otherwise, you would be… Read more »
So, Android phones are done. Now’s the time to give the iPads a rest. If you would like to develop applications for Android Tablets, you need to get a few… Read more »
Passing data between activities is quite easy. You would normally do that using the Bundle packed into an intent. But sometimes you need to pass complex objects from one activity… Read more »
Handling HTML content on a TextView is simple as far as the HTML coming in contains a few tags that are by default supported by Android. Simple formatting like bold,… Read more »
Till now, there is no Drag and Drop like control on the Android. This feature might come in handy in a few situations to improve the usability of your apps…. Read more »
Here is a trick that would help other applications that need to open search results for videos based on a particular keyword. You need to create an implicit Intent and… Read more »
From the very first day, I hated Relative Layouts. I struggled with layouts in general during my initial days till I figured out that Linear Layouts can create any kind… Read more »