1.ActivityManager类解析 获得实例 ActivityManager
activityManager= (ActivityManager)
context.getSystemService(Context.ACTIVITY_SERVICE); 内部类 1).Activi...
分类:
移动开发 时间:
2014-04-28 14:16:30
阅读次数:
670
这道题也很简单,只要把二叉树按照宽度优先的策略遍历一遍,就可以解决问题,采用递归方法越是简单。下面是AC代码:
1 /** 2 * Sum Root to Leaf Numbers 3 * 采用递归的方法,宽度遍历 4 */ 5 int result=0; 6...
分类:
其他好文 时间:
2014-04-28 10:05:40
阅读次数:
682
xvfb启动PyQt4程序报如下错误:Unable to load library icui18n
"Cannot load library icui18n: (libicui18n.so.48: cannot open shared object file:
No such file or dir...
分类:
其他好文 时间:
2014-04-28 05:54:03
阅读次数:
675
所有包含Heap Profling功能的工具(MAT, Yourkit, JProfiler,
TPTP等)都会使用到两个名词,一个是Shallow Size,另一个是 Retained Size.
这是两个在平时不太常见的名词,本文会对这两个名词做一个详细的解释。Shallow Size对象自身占...
分类:
其他好文 时间:
2014-04-28 04:44:45
阅读次数:
455
自己写的最新版本extjs4.2的树结点的操作,记录一下,以后可能会用到。
var tree = new Ext.tree.TreePanel({
flex: 1,
animate: true,
autoScroll: true,
anchor: '100% 93%',
store: new Ext.data.TreeStore({
root:{
expanded: true...
分类:
Web程序 时间:
2014-04-27 19:00:19
阅读次数:
1278
在Linux上启动VNC Server(如果没安装的话那就先安装)
执行vncserver命令:
[root@linux root]# vncserver
You will require a password to access your desktops.
Password: ----为了不想任何人都可以任意遥控此计算机。因此当第
Verify: ---1次启动VNC se...
分类:
系统相关 时间:
2014-04-27 18:33:08
阅读次数:
1009