List/Grid Android Core Subscribe to the RSS feed of category Android Core

Animation Resources and AnimationListener
In this post i want to analyze how we can use animation in Android and how we can implements an AnimationListener. In particular i want to describe the tween animation that are the ...

Android ExpandableListView with Custom Adapter: BaseExpandableListAdapter
In the previous post we talked about ListView and how we can use it. Android OS has another widget that can be useful when you want to group items, this component is called ExpandableListView. ...

Android ListView: Custom Adapter with ImageView
In previous post we talked about custom adapter. We used a quite simple adapter with just a TextView. We want to expand the idea described before and introduce an image for each planet. ...

Android Fragment Lifecycle – multiple screen support
Fragment lifecycle is an important aspect to take into account before using fragments. Every developer, that wants to develop an application in Android, has to face the mobile phone ...

Fragment in Android: Tutorial with Example using WebView
In this post we want to explain how to use fragment in Android with a real example. In the last post we talked about Fragment in Android and how we can use it to support multiple screen. ...

Expandable List in Android
Today we are going to discuss ExpandableListView in Android. Here I’ve used Eclipse with ADT plugin to build this example. The example is straightforward. Create a new Android Application ...

Android Apache HTTP Client
In this post I want to describe how to build an HTTP client using Apache library. In one of my post I describe how we can use HttpUrlConnection to create a client. Using Apache library ...

Android ListView – Tutorial and basic example
One of the UI component we use often is ListView, for example when we need to show items in a vertical scrolling list. One interesting aspect is this component can be deeply customized ...

Android HTTP Client: GET, POST, Download, Upload, Multipart Request
Often Android apps have to exchange information with a remote server. The easiest way is to use the HTTP protocol as base to transfer information. There are several scenarios where ...

Android: Build real weather app: JSON, HTTP and Openweathermap
In this post I want to describe how to create a weather app that gives current weather information. This app will use JSON, HTTP connection and AsyncTask to get this information.. As ...


