虽然Handler用的地方比较普遍,但是接口也有他的独特之处,比较直观,然后降低了耦合性 如有一接口,需要将数据传给使用的activity中,接口如下 public interface PushValue { void push(byte v,byte v2); } 1:判断context是否继承并通知调用接口 if(context instanceof PushValue){ ((PushValue)context).push((byte)(crc16&0xff),(byte) ((0xff0…