Skip to content Skip to sidebar Skip to footer
Showing posts with the label Handler

Understanding Android Fingerprint Api Authenticate() In Depth

I'm working on Android FingerPrint native API's for couple of days and there are two things… Read more Understanding Android Fingerprint Api Authenticate() In Depth

Android Handlers - Inter-thread Communication

How do you implement two-way communication between two threads with Handlers in Android? I have a S… Read more Android Handlers - Inter-thread Communication

When To Use A Service Or Asynctask Or Handler?

Can someone tell me the TRUE difference? Solution 1: My rule of thumb is that an AsyncTask is for… Read more When To Use A Service Or Asynctask Or Handler?

Widget Stops Updating After A Few Minutes

Im developing a widget that shows the time and date using two TextView using a timer to update ever… Read more Widget Stops Updating After A Few Minutes

Android Seekbar Progress Is Not Working?

I am trying to add a seekbar to a media player that streams from the internet. However, for some re… Read more Android Seekbar Progress Is Not Working?

Alert Dialog From Thread - Android

I have a thread that sends GPS coordinates to a database every six seconds and I have a check that … Read more Alert Dialog From Thread - Android

Playback Video In Slow Motion In Android

- I am working on a project which needs to play video in slow motion. - I am well aware that Androi… Read more Playback Video In Slow Motion In Android

Will Handler Inside A Method Leak Memory?

I know handler declared in a class may leak memory since it holds a reference to its outer class. I… Read more Will Handler Inside A Method Leak Memory?