1. Surface View Animation Example in Android

This example shows how you can animate your view using OpenGL in android. Algorithm: 1.) Create a new project by File-> New -> Android Project name it SurfaceViewAnimationExample. 2.) Create and write following into src/Cube.java: package com.example.SurfaceViewAnimationExample; import java.nio.ByteBuffer; import java.nio.ByteOrder; import java.nio.IntBuffer; import javax.microedition.khronos.opengles.GL10; class Cube {     public Cube()     { [...] No related posts. Related posts brought to you by Yet Another Related Posts Plugin.

Read More...

2. Rubik Cube Animation Example in Android

This example shows how you can create Rubik's cube in android. Algorithm: 1.) Create a new project by File-> New -> Android Project name it RubikCubeAnimationExample. 2.) Create and write following into src/M4.java: package com.example.RubikCubeAnimationExample; public class M4 {         public float[][] m = new float[4][4];             [...] No related posts. Related posts brought to you by Yet Another Related Posts Plugin.

Read More...

3. Gradient Drawing Example in Android

This example shows how you can draw different gradient shapes in android. Algorithm: 1.) Create a new project by File-> New -> Android Project name it GradientDrawingExample. 2.) Create and write following into src/GraphicsActivity.java: package com.example.GradientDrawingExample; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.view.ViewGroup; class GraphicsActivity extends Activity {     private static final boolean [...] No related posts. Related posts brought to you by Yet Another Related Posts Plugin.

Read More...
4. Animation Reverse Example in Android

This example shows how to animate an object and play the animation in reverse in android. Algorithm: 1.) Create a new project by File-> New -> Android Project name it AnimationReverseExample. 2.) Create and write following into src/ShapeHolder.java: package com.example.animationreverseexample; import android.graphics.Paint; import android.graphics.RadialGradient; import android.graphics.drawable.ShapeDrawable; import android.graphics.drawable.shapes.Shape; public class ShapeHolder {     private [...] No related posts. Related posts brought to you by Yet Another Related Posts Plugin.

Read More...
5. Login Request Example in Android

This example shows how to create and handle login form in android. Algorithm: 1.) Create a new project by File-> New -> Android Project name it LoginRequestExample. 2.) Write following into main.xml: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:tools="http://schemas.android.com/tools"     android:layout_width="match_parent"     android:layout_height="match_parent" >     <TableLayout xmlns:android="http://schemas.android.com/apk/res/android"     android:layout_width="fill_parent"     android:layout_height="fill_parent"   [...] No related posts. Related posts brought to you by Yet Another Related Posts Plugin.

Read More...
6. Drawable Animation Example in Android programming

This example explains how you can animate your drawbles. Algorithm: 1.) Create a new project by File-> New -> Android Project name it DrawableAnimationExample. 2.) Create and write following into GraphicsActivity.java: package com.example.DrawableAnimationExample; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.view.ViewGroup; class GraphicsActivity extends Activity {         private static final boolean TEST_PICTURE [...] No related posts. Related posts brought to you by Yet Another Related Posts Plugin.

Read More...
7. Camera Preview Example in Android Programming

This example explains how you can use camera apis and create camera preview in you applications. Algorithm: 1.) Create a new project by File-> New -> Android Project name it CameraPreviewExample. 2.) Write following permissions into your manifest xml: <uses-permission android:name="android.permission.CAMERA" />     <uses-feature android:name="android.hardware.camera" />     <uses-feature android:name="android.hardware.camera.autofocus" android:required="false" /> 3.) Create [...] No related posts. Related posts brought to you by Yet Another Related Posts Plugin.

Read More...
8. Bitmap Example1 in Android Development

This example explains how you can use bitmaps to create funny animations. Algorithm: 1.) Create a new project by File-> New -> Android Project name it BitmapExample1. 2.) Create and write following into GraphicsActivity.java: package com.example.BitmapExample1; import android.app.Activity; import android.os.Bundle; import android.view.View; import android.view.ViewGroup; class GraphicsActivity extends Activity {         private static [...] No related posts. Related posts brought to you by Yet Another Related Posts Plugin.

Read More...
9. Background App Example in Android Programming

This example shows how you can minimize your activity and start a service and resume your activity whenever required. Algorithm: 1.) Create a new project by File-> New -> Android Project name it BackgroundAppExample. 2.) Write following into main.xml: <RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"     xmlns:tools="http://schemas.android.com/tools"     android:layout_width="match_parent"     android:layout_height="match_parent" >     <TextView   [...] No related posts. Related posts brought to you by Yet Another Related Posts Plugin.

Read More...
10. SplitTouch Example in Android programming

This example shows two menus one for movies and other for actors. The Movie option shows a list of movies. The user can select one movie and some info can be shown to user about that movie on a dialog box, similarly the actor menu choice will list some actors and actresses and selecting will [...] No related posts. Related posts brought to you by Yet Another Related Posts Plugin.

Read More...

I guess you came to this post by searching similar kind of issues in any of the search engine and hope that this resolved your problem. If you find this tips useful, just drop a line below and share the link to others and who knows they might find it useful too.

Stay tuned to my blogtwitter or facebook to read more articles, tutorials, news, tips & tricks on various technology fields. Also Subscribe to our Newsletter with your Email ID to keep you updated on latest posts. We will send newsletter to your registered email address. We will not share your email address to anybody as we respect privacy.


This article is related to

Mobile Development Tutorials,Mobile Developments,Android Development,Android,Android Resources,Android Samples