I am trying to use a Handler in my app. But when i instantiate it like this:
Handler
Handler handler = new Handler();
I get the follow
It seems like you have implemented the wrong Handler class
import java.util.logging.Handler;
Change it to
import android.os.Handler;