Adding Long Click functionality in List View – Context Menus
As we saw in the last post, we can easily handle clicks on the list items. However, often times in our applications we would like to have separate genres of opt...
As we saw in the last post, we can easily handle clicks on the list items. However, often times in our applications we would like to have separate genres of opt...
In the previous posts we saw how we can, in a number of ways populate out List Views. However, most of the times just populating and displaying List Views aren&...
Till now we have been using Android’s default row layout for populating the ListView. It might sometimes become necessary to use one that satisfies our ne...
A doubly linked list is a linked linear data structure,each node of which has one or more data fields but only two link fields known as left link (LLINK) and ri...
Linked list is one of the fundamental,simplest and most common data structures in C programming language.A linked list is a data structure consisting of a group...
Given a string,the task is to print all the permutations of the string. A permutation is a rearrangement of the elements of an ordered list S.A string of length...
In the previous post, I showed you how to create a ListView and populate it with elements of a String array. If you can recall, we used a regular activity in th...
Often times in your application when you want to list down a bunch of data you’re going to use a List View. It provides a predefined layout that helps cre...
One of the most striking features of Android is Content Providers. In a sentence, Content Providers consist of a centrally located database in Android that help...
In all the earlier posts throughout this tutorial section, we’ve been dealing with standalone applications i.e. ones that require no network access. But w...