Gridview is like dissecting a screen into several columns and rows to ensure you put each data on an individual place of the grids. In an Android, the matter of Gridview is crucial because it gives...
Category: Android Programming
One of the goals of creating an application is to provide a good user experience. One of the use cases is the use of a spinner. Many newbies don’t actually know how to clear spinner value in...
Android seekbar is a useful UI element for selecting a range of values. By default, it allows the user to drag the thumb to change the value. But what if you want to move the thumb automatically?...
In many applications, displaying tabular data is a prerequisite. The ideal method is to create a Table. But for that, you need to know how to create a table in Android dynamically. The first...
If you don’t know how to store SQLite database in SD card in Android, this article is for you. Most Android users want more storage space on their devices. One easy solution is to store your SQLite...
OnTouchListener is an essential component in Android app development that detects touch events on the user interface. With the help of OnTouchListener, developers can add an interactive touch-based...