Android Progress Dialog not showing
- by ilomambo
This is the handler, in the main Thread, which shows and dismisses a progress dialog.
public static final int SHOW = 0;
public static final int DISMISS = 1;
public Handler pdHandler = new Handler() {
@Override
public void handleMessage(Message msg) {
Log.i(TAG, "+ handleMessage(msg:" + msg + ")");
switch(msg.what) {
…