上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 43 下一页
摘要: Visual Studio is being overly cautious. In debug mode, visual studio uses something called "Checked Iterators". Pointers are also iterators, but the c... 阅读全文
posted @ 2015-01-25 17:35 feiling 阅读(442) 评论(0) 推荐(0) 编辑
摘要: zhanzuo 阅读全文
posted @ 2015-01-25 17:30 feiling 阅读(258) 评论(0) 推荐(0) 编辑
摘要: 最近看了很多app的界面和交互非常棒,想学习下他们的源码,简单加压apk文件得到的资源文件和源码都不可读它们都是编译后的文件,在网上搜索了下,发现这篇blog提到的工具都非常好用~文章原地址:http://blog.csdn.net/ithomer/article/details/6727581==... 阅读全文
posted @ 2014-12-13 13:47 feiling 阅读(252) 评论(0) 推荐(0) 编辑
摘要: 国庆几天在家看了几篇关于使用Python来编写网络爬虫的博客,想来自己断断续续学习Python也有几个月了,但一个像样的程序都没有写过,编程能力并没有得到提高,愧对自己花费的时间。很多时候虽然知道什么事情是对的,但自身过于懒惰,不能坚持做一件事并且把它做好。这大概就是我和那些优秀的人之间的差距,这个... 阅读全文
posted @ 2014-10-09 15:38 feiling 阅读(771) 评论(0) 推荐(0) 编辑
摘要: 如果想通过调用findViewById()方法获取到相应的控件,必须要求当前Activity的layout通过setContentView. 如果你通过其他方法添加了一个layout,如需获取这个layout中的View对象,首先需inflate这个layout,然后在该layout上调用findV... 阅读全文
posted @ 2014-09-28 17:28 feiling 阅读(1031) 评论(0) 推荐(0) 编辑
摘要: 最近在联系开发DaysMatter时遇到一个问题:app中使用ListView来展示所有事件,每次添加完事件后使用下面代码来更新ListView.1 toDoListView.refreshDrawableState();会出现如下错误,错误内容是讲ListView的adapter必须是在UI线程中... 阅读全文
posted @ 2014-09-28 16:22 feiling 阅读(502) 评论(0) 推荐(0) 编辑
摘要: 1 final Builder builder = new AlertDialog.Builder(this); 2 builder.setIcon(R.drawable.appicns_folder_smart); 3 builder.setTitle("Normal Dialog"); 4 b... 阅读全文
posted @ 2014-09-25 17:14 feiling 阅读(169) 评论(0) 推荐(0) 编辑
摘要: 1 import types 2 3 aaa = 0 4 print type(aaa) 5 if type(aaa) is types.IntType: 6 print "the type of aaa is int" 7 if isinstance(aaa,int): 8 p... 阅读全文
posted @ 2014-09-04 00:40 feiling 阅读(342) 评论(0) 推荐(0) 编辑
摘要: Found this great table athttp://wiki.python.org/moin/MovingToPythonFromOtherLanguagesPython indexes and slices for a six-element list.Indexes enumerat... 阅读全文
posted @ 2014-09-03 11:12 feiling 阅读(814) 评论(0) 推荐(0) 编辑
摘要: 一、前言二、搭建环境* Linux laptop 2.6.32-45-generic #100-UbuntuSMP Wed Nov 14 10:41:11 UTC 2012 i686 GNU/Linux* tinyproxy 1.8.1三、安装方法$sudo apt-get install tiny... 阅读全文
posted @ 2014-08-27 22:02 feiling 阅读(2090) 评论(0) 推荐(0) 编辑
上一页 1 ··· 3 4 5 6 7 8 9 10 11 ··· 43 下一页