问题描述
在运行APK扩展文件示例中,我只是skiped检查CRC32到avoide CRC错误算法及其工作很细!不过,虽然XAPK文件验证显示正确的下载数据的信息99%!!,如何避免和查看全图,100%通过硬编码?
While running APK expansion file sample I just skiped checking CRC32 to avoide crc bug algorithm and its working very fine!! But while XAPK File validation shows in correct downloaded data information 99% !!, how to avoid that and view full 100% by hard-coding?
推荐答案
这不是一个最好的SLOUTION但我通过硬编码得到了解决 进度MPB; TextView的mProgressPercent; TextView的mProgressFraction;
在validationAsynctask的DownloaderActivity onPostExecute方法
It's not a best sloution but I got the solution by hard coding the ProgressBar mPB; TextView mProgressPercent; TextView mProgressFraction;
in DownloaderActivity onPostExecute method of validationAsynctask
mPB.setMax(10);
mPB.setProgress(100);
mProgressPercent.setText(100 + "%");
mProgressFraction.setText("Download Completed Successfully");
这篇关于XAPK文件验证显示正确的数据信息中的文章就介绍到这了,希望我们推荐的答案对大家有所帮助,也希望大家多多支持!