`
folksy
  • 浏览: 156862 次
  • 性别: Icon_minigender_1
  • 来自: 深圳
社区版块
存档分类
最新评论
文章列表
cts测试中,测试test_getInstance_invalid_locale失败的详细log如下:   cts-tf > run cts -c libcore.java.text.DateFormatSymbolsTest -m test_getInstance_invalid_locale03-01 12:12:23 I/TestInvocation: Starting invocation for 'cts' on build '4.0_r1' on device XXXXX 03-01 12:12:23 I/XXXXX: Created result dir 2013.0 ...
编译windows版本的android sdk时,说明上说 Under Ubuntu, you will need the following extra packages: $ sudo apt-get install mingw32 tofrodos mingw32 is the cross-compiler, tofrodos adds a unix2dos command 所以要先sudo apt-get install mingw32 tofrodos,不巧的是本人在执行此命令时不太顺利,遇到了如下的错误提示: update-alternatives javah can't ...
9.4 SystemServer进程的启动 http://book.51cto.com/art/201109/291270.htm   2011-09-14 21:16 柯元旦 电子工业出版社 我要评论(0 ) 字号:T | T 综合评级: 想读(18)    在读(2)    已读(4)     品书斋鉴(1)     已有24 人发表 ...
如何在32位ubuntu11.10 下编译android 4.0.1源码和goldfish内核 http://blog.csdn.net/xnwyd/article/details/7086414 分类: Android 2011-12-20 09:40 771人阅读 评论 (1) 收藏 举报 一 准备工作 1 安装 java sdk 6 ...
android.graphics.Paint方法setXfermode (Xfermode x... http://my.oschina.net/smalant/blog/40328   用法:设置两张图片相交时的模式 例子: 1 mPaint = new Paint(); 2          mPaint.setXfermode( new PorterDuffXfermode(PorterDuff.Mode. ...
Linux - select详解(二) http://groups.google.com/group/zhong1985624/msg/b165740c5fdc807c?Part 1: Select在Socket编程中还是比较重要的,可是对于初学Socket的人来说都不太爱用Select写程序,他们只是习惯写诸如 connect、accept、recv或recvfrom这样的阻塞 ...

Linux select()详解

Linux select()详解 http://groups.google.com/group/zhong1985624/browse_thread/thread/68da175597352271     select系统调用是用来让我们的程序监视多个文件句柄(file descriptor)的状态变化的。程序会停在select这里等待, 直到被监视的文件句柄有某一个或多个发生了状态改变。 文件在句柄在Linux里很多,如果你man某个函数,在函数返回值部分说到成功后有一个文件句柄被创建的都是的,如man socket可以看 到“On success, a file descriptor ...
Android获取其他包的Context实例然后干坏事 http://blog.csdn.net/wangshione/article/details/6062359   分类: Android技术 2010-12-08 10:29 508人阅读 评论(0) 收藏 举报        Android中有Context的概念,想必大家都知道。Context可以做很多事情,打开activity、发送广播、打开本包下文件夹和数据库、获取classLoader、获取资源等等。如果我们得到了一个包的Context对象,那我们基本上可以做这个包自己能做的大部分事情。    ...
http://xxw8393.blog.163.com/blog/static/3725683420107532137920/ 如何向android的framework里添加新类    2010-08-05 15:25:17 |  分类: Android | 字号   订阅 google对于所有的类和A ...
http://www.android123.com.cn/androidkaifa/896.html //调用浏览器 Uri uri = Uri.parse("");Intent it  = new Intent(Intent.ACTION_VIEW,uri);startActivity(it); //显示某个坐标在地图上 Uri uri = Uri.parse("geo:38.899533,-77.036476");Intent it = new Intent(Intent.Action_VIEW,uri);startActivity(it); ...
http://news.cnet.com/Wi-Fi-used-for-location-services/2100-7351_3-5754288.html   A Boston, Mass.-based start-up says it has developed software that uses Wi-Fi signals to pinpoint locations better than satellite-based global positioning systems can. On Monday Skyhook Wireless announced the comme ...
  Android HAL 开发 (1) 2010-08-10 20:58:04<!--showHead end--> 标签:开发 移动开发 Android HAL 原创作品,允许转载,转载时请务必以超链接形式标明文章 原始出处 、作者信息和本声明。否则将追究法律责任。http://buaadallas.blog.51cto.com/ ...
http://blog.chinaunix.net/space.php?uid=23929779&do=blog&id=85384 Android/Linux 内存监视   VSS - Virtual Set Size 虚拟耗用内存(包含共享库占用的内存) RSS - Resident Set Size 实际使用物理内存(包含共享库占用的内存) PSS - Proportional Set Size 实际使用的物理内存(比例分配共享库占用的内存) USS - Unique Set Size 进程独自占用的物理内存(不包含共享库占用的内存) 一 ...
http://www.sunxin.org/forum/thread/19757.html java 多线程锁机制Synchronized <script type="text/javascript"></script>       [关键字: Synchronized ] 打个比方:一个object就像一个大房子,大门永远打开。房子里有很多房间(也就是方 ...
http://blog.sina.com.cn/s/blog_494e45fe0100q7n4.html Van Helsing http://blog.sina.com.cn/craigchan Java Native Interface (JNI)标准是java平台的一部分,它允许Java代码和其他语言写的代码进行交互。JNI 是本地编程接口,它使得在 Java 虚拟机 (VM) 内部运行的 Java 代码能够与用其它编程语言(如 C、C++ 和汇编语言)编写的应用程序和库进行交互操作。   1.从如何载入.so档案谈起     由于Android的应用层的类都是以J ...
Global site tag (gtag.js) - Google Analytics