摘要:参考资料(使用liveusb模式时候出现花屏问题)http://www.x86android.com/thread-100-1-1.html下载的iso需要改动的地方(版本android-x86-4.2-20130228.iso)启动参数中androidboot.hardware=android_x86这个android_x86需要改为x86然后可以启动进入android,但是有时候会因为分辨率导致花屏,所以需要添加vga这个参数,后面需要添加一个vga=773自己编译的iso不需要改动x86那一项,但是分辨率仍然需要改动vga需要改变和你分辨率相适应的源http://wiki.ubuntu.
阅读全文
摘要:http://huaonline.iteye.com/blog/1756449(native service binder1)http://blog.csdn.net/21cnbao/article/details/8087328(2)http://www.eoeandroid.com/thread-160615-1-1.html (360悬浮窗)http://jingyan.baidu.com/article/656db918bab64fe381249cd4.html android变鼠标http://www.blogjava.net/Carter0618/archive/2007/08/1
阅读全文
摘要:if (!strcmp(basename(argv[0]), "ueventd")) return ueventd_main(argc, argv); /* clear the umask */ umask(0); /* Get the basic filesystem setup we need put * together in the initramdisk on / and then we'll * let the rc file figure out the rest. */ mkdir("/dev", 0755); mkdir(&qu
阅读全文
摘要:1.最终的目标是要实现一个可以翻页的GridView,同时必须要有动画。首先实现一个翻页动画。经过查资料,发现翻页重写ViewGroup然后结合Scroller来实现貌似是最为好的一种方式。下面列出来参考的比较好的几个资料讲解Scroller原理的一个http://blog.csdn.net/gemmem/article/details/7321910里面有一个非常好的例子,同时有一系列好的讲解UI的博客http://blog.csdn.net/qinjuning/article/details/7419207View详细加载过程和invalidate等知识http://blog.csdn.n
阅读全文