¿Implementar Thread Android en mi clase?

Me gustaría saber cómo implementar un subproceso en esta clase para protegerlo de los problemas de ANR (la aplicación no responde)

public class myClass {


    private static String LOG_TAG = Root.class.getName();

    public boolean isDeviceRooted() throws IOException {

        if (checkRootMethod1()){return true;}
        if (checkRootMethod2()){return true;}
        if (checkRootMethod3()){return true;}
        return false;

    }
    public boolean checkRootMethod1(){
        String buildTags = android.os.Build.TAGS;

        if (buildTags != null && buildTags.contains("test-keys")) {
            return true;
        }
        return false;
    }

    public boolean checkRootMethod2(){
        try {
            File file = new File("/system/app/Superuser.apk");
            if (file.exists()) {
                return true;
            }
            else {

                return false;
            }
        } catch (Exception e) {

        }

        return false;
    }

    public boolean checkRootMethod3() {
        if (new ExecShell().executeCommand(SHELL_CMD.check_su_binary) != null){
            return true;
        }else{
            return false;
        }
    }


        }

Si, por ejemplo, este código se ejecuta cuando presiono un botón, si presiono varias veces este botón, mi aplicación tiene un ANR.

Respuestas a la pregunta(2)

Su respuesta a la pregunta