Thursday, June 27, 2013

Android AnimationDrawable - Loading Example

0 comments
Android Drawable Animation  In this tutorial you will learn how to animate Image set by using Android AnimationDrawable  loading.xml res/anim/loading.xml <?xml version="1.0" encoding="utf-8"?> <animation-list xmlns:android="http://schemas.android.com/apk/res/android" android:id="@+id/voipemLoading" android:oneshot="false" > <item android:drawable="@drawable/loading_01" android:duration="300"/>...
Read more...

How to move an image from left to right and right to left in android

2 comments
Android Animation with TranslateAnimation In this tutorial you will learn how to animate an image from left to right and right to left in android using TranslateAnimation ImageView img_animation = (ImageView) findViewById(R.id.img_animation); TranslateAnimation animation = new TranslateAnimation(0.0f, 400.0f, 0.0f, 0.0f); // new TranslateAnimation(xFrom,xTo, yFrom,yTo) animation.setDuration(5000);...
Read more...

Tuesday, June 25, 2013

Android OnKeyListener Example

0 comments
In this post you will learn how to implement Android OnKeyListener with EditText EditTextKeyListener EditTextKeyListener class implement the Android OnKeyListener interface package com.javasrilankansupport.androidkeylistner; import android.os.Bundle; import android.view.KeyEvent; import android.view.View; import android.view.View.OnKeyListener; import android.widget.EditText; import android.widget.Toast; import android.app.Activity; public...
Read more...