2012年3月5日

findViewById 为空的可能原因

摘要: 三种可能原因:1) 在setContentView之前调用了,解决方法: 在setContentView之后调用。@Overridepublic void onCreate(BundlesavedInstanceState){ super.onCreate(savedInstanceState); ListView lv = (ListView)findViewById(R.id.tx); setContentView(R.layout.main); //…}2) findViewById所属的VIew如果是inflater出来的... 阅读全文

posted @ 2012-03-05 19:52 lightideal 阅读(632) 评论(0) 推荐(0) 编辑

[转载] convertView&setTag方法的一点理解

摘要: 原文地址:http://blog.163.com/freemanls@126/blog/static/164585061201171210504864/前言首先我们要知道setTag方法是干什么的,SK解释为TagsUnlike IDs, tags are not used to identify views. Tags are essentially an extra piece of information that can be associated with a view. They are most often used as a convenience to store data 阅读全文

posted @ 2012-03-05 18:07 lightideal 阅读(168) 评论(0) 推荐(0) 编辑

2012年3月2日

ListView Adapter

摘要: public interfaceListAdaptersimplements Adapterandroid.widget.ListAdapterKnown Indirect SubclassesArrayAdapter<T>, BaseAdapter, CursorAdapter, HeaderViewListAdapter, ResourceCursorAdapter, SimpleAdapter, SimpleCursorAdapter, WrapperListAdapter[转载] http://blog.sina.com.cn/s/blog_7db304660100x2f0 阅读全文

posted @ 2012-03-02 16:25 lightideal 阅读(243) 评论(0) 推荐(0) 编辑

ArrayAdapter requires the resource ID to be a TextView错误

摘要: 今天将Android Turtories上的ListView例子copy进去跑了下,出现一个错误ArrayAdapter requires the resource ID to be a TextView。上网查了下,说是TextView要是第一个元素,我的XML代码如下,确实是直接的元素,错哪儿了呢?实在找不出来,就把第一句的“<?xml version="1.0" encoding="utf-8"?>”删掉试试,居然可以了·····记住啦····&# 阅读全文

posted @ 2012-03-02 15:26 lightideal 阅读(635) 评论(0) 推荐(0) 编辑

MySQL函数集

摘要: 一、数学函数ABS(x) 返回x的绝对值BIN(x) 返回x的二进制(OCT返回八进制,HEX返回十六进制)CEILING(x) 返回大于x的最小整数值EXP(x) 返回值e(自然对数的底)的x次方FLOOR(x) 返回小于x的最大整数值GREATEST(x1,x2,...,xn) 返回集合中最大的值LEAST(x1,x2,...,xn) 返回集合中最小的值LN(x) 返回x的自然对数LOG(x,y) 返回x的以y为底的对数MOD(x,y) 返回x/y的模(余数)PI() 返回pi的值(圆周率)RAND(... 阅读全文

posted @ 2012-03-02 12:41 lightideal 阅读(829) 评论(0) 推荐(0) 编辑

2012年3月1日

JQuery Mobile学习(一)

摘要: 鉴于phonegap开发手机应用,Jquery Mobile也必不可少,上官网下载下来JS,短小精悍,很优美的代码。找了个例子,浏览器运行了下,这几行就能实现字体消失的功能了,放到phonegap的html中运行,android手机上也能work啦,继续学习~~<html><head><script type="text/javascript" src="jquery-1.7.1.js"></script><script type="text/javascript">$(do 阅读全文

posted @ 2012-03-01 18:09 lightideal 阅读(225) 评论(0) 推荐(0) 编辑

PhoneGap学习之(一) HelloWorld

摘要: 今天照着文档,PhoneGap的HelloWorld诞生了~~~so easy! http://phonegap.com/start#android总结下步骤:1) 装好Android开发的各类武器: Eclipse, Android SDK, ADT, 下载PhoneGap包2) 新建一个Android Project, 将X.jar copy到lib下,X.js copy到asserts/www, xml文件夹copy到res下3) 改主类:a) extends DroidGap b) 将setContentView(R.layout.main); ===> super.load.. 阅读全文

posted @ 2012-03-01 17:15 lightideal 阅读(336) 评论(0) 推荐(0) 编辑

2012年2月28日

ant delete can not successful solution

摘要: 今天在写ant脚本的时候发现一个del删除一个lib不成功,怀疑是什么占用了,但是手动是能删除的。g了一下,果然很多人碰到过(不得不承认,技术搜索方面谷哥比度娘给力太多了):Chances are that your build is using that JAR file in a classpath to <javac> or some other task, and Windows JVM locks JAR files from being deleted.是自己hack了classpath的路径,所以JVM锁住了,无法正常删除。Solution:1) Ant is wri 阅读全文

posted @ 2012-02-28 15:47 lightideal 阅读(275) 评论(0) 推荐(0) 编辑

2012年2月27日

ant中get, ftp上传下载删除的用法

摘要: 1) get<target name="test"> <get src="http://cn-1.1.10.jar" dest="some\"/></target>2) ftp<!--action不指定默认就是上传--><target name= "ftp.upload"> <ftp server="xxx.xx.10.49"s userid="anonymous" password="me@myor 阅读全文

posted @ 2012-02-27 18:01 lightideal 阅读(1447) 评论(0) 推荐(0) 编辑

在ant里面将字符串split的方法:

摘要: <taskdef resource="net/sf/antcontrib/antlib.xml"><classpath><pathelement location="D:\WorkTool\ant\lib\ant-contrib-1.0b3.jar"/><!--classpath不指定貌似也不会报错,神奇--></classpath></taskdef><target name="test"><echo message="The fir 阅读全文

posted @ 2012-02-27 11:33 lightideal 阅读(658) 评论(0) 推荐(0) 编辑

导航