摘要: 我遇到的这个问题通过降低了AVD的分辨率后解决了,估计是电脑的显卡不行。 阅读全文
posted @ 2014-02-07 23:18 尐sんΙ頭 阅读(128) 评论(0) 推荐(0) 编辑
摘要: 1 Ext.Loader.setConfig({ 2 enabled : true 3 }); 4 Ext.Loader.setPath('Ext.ux', '../extjs/ux'); 5 Ext.require([ 'Ext.form.*', 'Ext.data.*', 'Ext.grid.Panel' ]); 6 7 Ext.onReady(function() { 8 Ext.QuickTips.init(); 9 var bodyWidth; 10 var bodyHeight; 11 var pane 阅读全文
posted @ 2014-02-07 18:02 尐sんΙ頭 阅读(257) 评论(0) 推荐(0) 编辑
摘要: Tools->Preferences->User Interface->Keyword case = Uppercase,就设置为大写了。 阅读全文
posted @ 2014-02-07 15:19 尐sんΙ頭 阅读(360) 评论(0) 推荐(0) 编辑
摘要: 1 /** 2 * 判断本机当前的网络状态是否联通 3 * 在这里主要用到中国天气信息,所以访问百度地址是否能够访问成功来判断当前的网络状态 4 */ 5 public static boolean isConnect() { 6 Runtime runtime = Runtime.getRuntime(); 7 try { 8 Process process = runtime.exec("ping " + "www.baidu.com"); 9 InputStream i... 阅读全文
posted @ 2014-02-07 15:13 尐sんΙ頭 阅读(787) 评论(0) 推荐(0) 编辑