How to create animation by default in a GridLayout in Android?

By | June 3, 2013

This example shows you how to create animation using the default XML tag in a gridview. This application demonstrates how to use the animateLayoutChanges tag in XML to automate transition animations as items are removed from or added to a container. Click on the download link to get the source code. Let’s have a look.… Read More »

How to create a SearchView with Filter mode in a ListView in Android?

By | October 27, 2017

Actually this is fairly simple. Android by default provides a SearchView class that has the ability to filter. Just look at the XML layout that I am using in this post. It consists of a SearchView and a ListView. The searchView searches the listview for the matched content. Click on the link below to download… Read More »

Wave Scale Animation in GridViews in Android

By | May 23, 2013

Hello all Previously I have shown many posts where we animate each row of the GridView randomly, linearly etc. GridView RandomFade animation in Android and Cascade animation in a ListView in Android. In today’s post I will show you how to create a wave scale animation in the ListViews. Please refer to my old posts… Read More »

Samsung Galaxy S4

By | May 27, 2013

Display 5inch Full HD Super AMOLED (1920 x 1080) display, 441 ppi AP 1.9 GHz Quad-Core Processor / 1.6 GHz Octa-Core Processor The seletion of AP will be differed by markets Network 2.5G (GSM/ GPRS/ EDGE): 850 / 900 / 1800 / 1900 MHz 3G (HSPA+ 42Mbps): 850 / 900 / 1900 / 2100 MHz… Read More »

How to create a beautiful wheel animation in android?

By | May 25, 2013

Today’s post is about animation, a beautiful animation, exploring capabilities of android. You can click on the link to download the code. Here we will have three java classes and no XML files. 1. GraphicsActivity.java 2. PictureLayout.java 3. Sweep.java At first we start with PictureLayout.java Now our second java file, GraphicsActivity.java No need to declare… Read More »

900 million Android activations

By | May 15, 2013

Google’s Android OS has more than 900 million users, the company said Wednesday at its I/O event began in San Francisco. Google also announced several APIs that will let developers add more capabilities to their Android apps, including in the areas of location and improving battery life. “It’s been an amazing year for Android developers,”… Read More »

How to create a List with Alphabet Overlay in Android

By | May 12, 2013

Hello everyone… Today’s post is about simply loading the ListView with some alphabetically sorted data BUT with the first alphabet overlay over them when you scroll. It’s same as the overlay you see when a user scrolls through the contacts application. SO Let’s start with the code. At first I will create a class that… Read More »

How to start with Android – Basics and Fundementals.

By | May 13, 2013

Hello all This post for everyone who like to start with android and know the basics. It includes Introduction to Android Android Architecture Dalvik Virtual Machine Android Application Fundamental Components The above links will be going by another android blog which also teaches you the basics of Android. Check out these links and start coding… Read More »

How to use ImageSwitcher in Android?

By | May 12, 2013

You can read more about ImageSwitcher here http://developer.android.com/reference/android/widget/ImageSwitcher.html Click on the link below to download the code. This is the layout that contains the ImageSwitcher What we will do is we will load some images into the Gallery and then load each image into the ImageSwitcher on clicking on each item in the Gallery. Here… Read More »

ListView Bottom to Top Animation in Android.

By | May 10, 2013

Like my previous posts animation chapter is again continued. This time the animation in on a ListView from Bottom to Top. You have already seen animations from Top to Bottom in my previous posts. See some of my posts here. All animation posts from CoderzHeaven is here Click on the download link at the bottom… Read More »

Creating a Drawable animation in Android.

By | May 3, 2013

This is a simple example of how to animate a drawable in Android. This example is from the official android demo applications. Here we have 5 java classes. AnimateDrawable.java AnimateDrawables.java GraphicsActivity.java PictureLayout.java ProxyDrawable.java AnimateDrawable.java AnimateDrawables.java GraphicsActivity.java PictureLayout.java ProxyDrawable.java Download the complete source code from here Join the Forum discussion on this post

GridView RandomFade animation in Android

By | May 2, 2013

In some of my older posts I have already showed a lot of animations on ListView and GridViews. Search coderzheaven for ListView and GridView animations if you want to see the articles and posts. This is also yet another post on animation. Here what I will do is create an animation in a GridView such… Read More »

Cascade animation in a ListView in Android.

By | April 30, 2013

Here is a simple example for cascade animation of a listview in android. We use these classes for achieving this. 1. AnimationSet Represents a group of Animations that should be played together. The transformation of each individual animation are composed together into a single transform. If AnimationSet sets any properties that its children also set… Read More »

Multiple Selection GridView in Android

By | April 27, 2013

This is a simple post that helps you to do multiple selection in a ListView. Check out previous posts for 3D animation in a Listview. At first we will see the XML layout file. This layout contains a gridview since we are dealing with it only. grid_1.xml Now the MainActivity that does all the work… Read More »

Different types of Animation – Push Up in, Push Up Out, Push Left in, Push Left Out, HyperSpace In, HyperSpace Out in a ViewFlipper in Android.

By | April 27, 2013

Hello all…. This is going to be a big post.. Check out my previous post for a rotate3D animation between a ListView and an Image. How to create a rotate 3D Animation between a ListView and an ImageView in Android? Today I will show you different types of Animations using ViewFlipper in a textView. Here… Read More »

How to create a rotate 3D Animation between a ListView and an ImageView in Android?

By | April 21, 2013

At first we will create a class called “Rotate3dAnimation” which is responsible for the 3D Animation. The Rotate3dAnimation.java looks like this. The Matrix class holds a 3×3 matrix for transforming coordinates. Matrix does not have a constructor, so it must be explicitly initialized using either reset() – to construct an identity matrix, or one of… Read More »

HTC One X

By | April 8, 2013

GENERAL 2G Network GSM 850 / 900 / 1800 / 1900 3G Network HSDPA 850 / 900 / 1900 / 2100 HTD-SCDMA/ TD-HSPA 1900 / 2100 – HTC One XT SIM Micro-SIM Announced 2012, February Status Available. Released 2012, May BODY Dimensions 134.4 x 69.9 x 8.9 mm (5.29 x 2.75 x 0.35 in) Weight… Read More »

Samsung Galaxy S4

By | April 8, 2013

GENERAL 2G Network GSM 850 / 900 / 1800 / 1900 3G Network HSDPA 850 / 900 / 1900 / 2100 4G Network LTE SIM Micro-SIM Announced 2013, March Status Coming soon. Exp. release 2013, April 26th BODY Dimensions 136.6 x 69.8 x 7.9 mm (5.38 x 2.75 x 0.31 in) Weight 130 g (4.59… Read More »

How to create a simple PopUp Menu in Android?

By | April 8, 2013

Hello all… This is a simple tutorial for creating a simple popup menu like the one you see in the action bar options button. Actually this is fairly simple with actionBar. But if you don’t want the actionbar and only want the popup menu, then here is the solution. You can read more about PopupMenu… Read More »

Reading webpage contents as a string in Windows Phone 7.

By | April 4, 2013

Hello all…. I am new to Windows Phone 7. So I am starting by posting a simple tutorial Here. In this post I will try to read a webpage contents as a string and show it in a MessageBox. Here is the complete code.

How to send Data between two individual applications in Android?

By | April 1, 2013

We can send data between two individual applications in Android if the receiving application is configured to received that type of data. For example if an application is to receive Image data then it’s manifest should contain the ImageFilter as Shown below For example ac activity in the receiving application is named “Receiver” then its… Read More »