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

First step of my Enactus journey 0

First step of my Enactus journey

I, like most of you, went to university with no idea of what I wanted  to do. I wanted to meet people, join different clubs and communities, and maybe study a little bit. I found out that it’s really easy … Read More

github tutorial 0

Get started with Git

It’s commonly known that Git is too complex for beginners. Yet, what is complex is the way we are introducing Git to beginners . So don’t panic, just follow this tutorial step by step and you will discover how simple … 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