android delay usando handler

Quiero mostrar un par de imágenes y agregar un retraso entre cada imagen. Hice esto y no tengo errores en el código, pero por alguna razón la aplicación se bloquea.

Bitmap bitmap = BitmapFactory.decodeFile(imageIn);
    ImageView myImageView = (ImageView)findViewById(R.id.imageview);
    myImageView.setImageBitmap(bitmap);
    // Those are the only 2 lines I used to make my handler 
    Handler handlerTimer = new Handler();
    handlerTimer.postDelayed((Runnable) this, 20000);

Respuestas a la pregunta(1)

Su respuesta a la pregunta