Home
Iced Tea Labs
Cancel

Apply MVP Pattern for Android

A - What is MVP? MVP pattern stands for Model - View - Presenter. MVP is a derivative from famous MVC guy. It allows separate the presentation layer from the business logic. -   Model: handle pers...

Parse JSON Request using Volley and GSON

In previous post,  I showed you how to use Volley to make a simple request in Android application. This time, I’ll show you the recommended way to make a JSON request using Volley and how to custo...

Simple Request Using Volley

A – What is Volley? Volley is a very powerful and easy to use library for Android that can be used to handle networking connection. It manages the processing and caching of network requests and it...

Card Flip Animation

In previous posts, I showed you how to apply animation (fade, slide) to activity transaction. In this post, I’ll show you how to do a card flip animation applied for any View or Layout objects. A ...

Use Dropbox as SVN Repository

Version controlling is one of the most important concept in Software Development. It allow you to track all the version of files, folders among different team members in a very easy way. By the wa...

Facebook SDK Integration in Android

You must know that social media has a very important position in modern life - every thing can be shared on social network. One of the largest and most famous social network is Facebook. Integrate...

Organizing code with namespace in JavaScript

A. Preface: Sometime, we want to use functions or properties globally. But when there are too much global variables, they may be bring a lot of trouble - naming collisions. We can use namespace to ...

Activity Slide Transition

A - Introduction In previous post - Activity Fade Transition - I show you the pros of using transition animation in Android application. Today, I’ll show you another type of animation - slide tran...

Tips and Tricks for JavaScript Array

At the very first sight, I don’t like JavaScript! And till now, I still don’t like it LOL But because of my job, I have to deal with this it :) In this post, I’ll show you guys some tips and tri...

Activity Fade Transition

A - Introduction Fade animations made the transition between 2 activities becomes smoothly and naturally. It will gradually fade out current activity while simultaneously fading in another. Withou...