Category: Android

0

Android – Sectionned listview

Listviews are commonly used to display a large set of similar data. In some cases, you  might need to display your  data  in groups or sections depending on a certain criteria. This tutorial shows you how to divide your list … Read More

Android project structure 0

Organizing android app’s source files

Many beginner programmers may not realize what the point of this is, a guide on how to organize your project’s files ! Well I have had an experience working in team to develop desktop and web applications before, and on … Read More

Android Shared Preferences 4

Android – Introduction to SharedPreferences

Being able to save or persist data within your application is a fundamental skill. It enables your users to save their work, remember their preferences, store all types of files for reuse, and more.
This tutorial introduces you to one … Read More

Android User session management 1

Android – User session management with SharedPreferences

Session management is a basic and frequently taken step when developing Android applications. There are two possible ways to manage login sessions of your users : storing them in global variables, or, storing them in SharedPreferences. The problem with storing … Read More