摘要: 今天在网上找了些资料,做了一个图片左右滚动的Demo,类似幻灯片播放,同时,图片带倒影效果,运行效果如下图: 实现方式是重写Gallery,使用自定义的Gallery来实现这一效果,工程一共三个文件,一个Activity,一个自定义的Gallery,还有就是一个适配器ImageAdapter,直接上代码:ScrollGallery.javapublic class ScrollGallery extends Gallery { private Camera mCamera = new Camera(); //左右图片倾斜的角度 privat... 阅读全文
posted @ 2013-08-11 22:27 GreyWolf 阅读(233) 评论(0) 推荐(0) 编辑
摘要: In my recent post onHow To Choose the Best XML Parser for Your iPhone Project, Saliom from the comments section suggested writing a post on how to use an XML library to read and write XML documents, create your own objects based on the documents, and perform XPath queries.This XML tutorial will show 阅读全文
posted @ 2013-08-11 18:52 GreyWolf 阅读(266) 评论(0) 推荐(0) 编辑
摘要: There are a lot of options when it comes to parsing XML on the iPhone. The iPhone SDK comes with two different libraries to choose from, and there are several popular third party libraries available such as TBXML, TouchXML, KissXML, TinyXML, and GDataXML. How is a developer to choose the best XML pa 阅读全文
posted @ 2013-08-11 18:50 GreyWolf 阅读(273) 评论(0) 推荐(0) 编辑