摘要:long startTime = System.currentTimeMillis(); // 开始下载时获取开始时间long curTime = System.currentTimeMillis();int usedTime = (int) ((curTime-startTime)/1000);i...
阅读全文
08 2014 档案
摘要:情况一:混淆不同的函数aTest、bTest-keep class com.zony.Test { void aTest(byte[], int, int); void bTest(String, int, int);}情况二:混淆相同的函数aTest(aTest参数不同)错误混淆方式:...
阅读全文
摘要:1. Parcelable接口Interface for classes whose instances can be written to and restored from a Parcel。 Classes implementing the Parcelable interface must ...
阅读全文