在线程中调用包含创建handler方法的时候,会报错,提示: “need call Looper.prepare()” -- 在创建之前,调用Looper.prepare()方法来创建一个looper 但是这个包含创建handler的方法,可能在主线程中调用,也可能在子线程中调用. 在主线程中调用的时候,你给它加上looper.prepare()方法,它可能会报错,提示: “Only one Looper may be created per thread” -- 每个线程之中,只能有一个Loo…