Tuesday, December 10, 2013

Sith Browser

2 comments
Sinhala Android web Browser | Tamil Android web Browser  Sith Browser is light weight fast Android web Browser (Sinhala Android web browser / Tamil Android web Browser). Happy Browsing ★ Sinhala web Browser★ Tamil web Browser Features: - Unlimited Tabs- Full Screen Mode- Incognito Browsing (Incognito Mode keeps you safe while browsing,History is not saved, Cookies are disabled, and Location access is disabled to ensure as best we can...
Read more...

Friday, September 6, 2013

Android Swipe List View

1 comments
SwipeListView  An Android List View implementation with support for drawable cells and many other swipe related features. on Android for @ 47 Degrees Fork source code from githon Android for @ 47 Degreesub...
Read more...

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...

Tuesday, March 19, 2013

How to Install Android SDK properly in ubuntu 12.04 amd64

0 comments
Android SDK in ubuntu 12.04 amd64 Android SDK is not working properly in ubuntu 12.04 amd64 , because...
Read more...