摘要:
strings (Unix) In computer software, strings is a program in Unix-like operating systems that finds and prints text strings embedded inbinary files su 阅读全文
摘要:
项目中加入了一个第三方包,运行时出现了这个错误,Ignoring InnerClasses attribute for an anonymous inner class。造成这个问题的根本原因是debug证书过期了。解决方法是:删除掉已过期的debug.keystore,再重新build整个程序。 阅读全文
摘要:
导入工程时,报错: Project has no default.properties file! Edit the project properties to set one.意思是“工程中没有default.properties 这个文件”,在网上搜了一个很脑残的方法: “那就是把project.properties文件重命名一下~\(≧▽≦)/~啦啦啦 就改成default.properties”这个文件对于我的唯一意义就是最后一行有个指定ADK版本之类的,由于我电脑里装的模拟器版本不全,所以就老是改来改去,囧~今天其他收获:1.修改代码的字体大小:Windows->Prefere 阅读全文
摘要:
报错:android super not call exception did not call through to super onCreate() 程序意外停止。解决方案:onCreate()函数中没有加上:super.onCreate(savedInstanceState); 即可 阅读全文
摘要:
参考:http://null-point.iteye.com/blog/1591896 用aChartEngine画TimeChart的时,横坐标的日期显示格式很多样。下面这些例子加上一些变通基本上涵盖了所有的格式:“For the month of September: M -> 9MM -> 09MMM -> Sep MMMM -> September For 7 minutes past the hour: m -> 7mm -> 07mmm -> 007mmmm -> 0007Examples for April 6, 1970 at 3 阅读全文
摘要:
最近在整aChartEngine,第一次自己添加第三方包。在导入官网上的Demo之后,运行的时候却发现这个“conversion to dalvik format failed with error 1”错误,上网搜了一下,好像有很多人说是高低SDK版本不兼容的问题,也没怎么看懂。尝试了Project->Clean,没用。后来看到这个作者:http://www.apkbus.com/forum.php?mod=viewthread&tid=14084&fromuid=3402说:“这个错误是由于错误的添加了不必要的core library,我是多添加了Android.ja 阅读全文