Posts Tagged "mobile"

Building RSS Reader With Sencha Touch and PHP

December 18th, 2010 by aditia rahman / 10 Comments  

     

Sencha Touch is one of the mobile web appication framework available that we can download for free, it targeted for iPhone, Android or Tablet devices, if you have some experience with ExtJS, I believe you have one advantage in learning Sencha Touch, most of the component, code structure built similar with ExtJS.  This is my first bite, tasting sencha touch I have created RSS reader that read from FeedBurner .

Ok lets get our finger dirty, first I created the main html file, this will include the sencha touch files (javascript and css) and my custom script for creating this application, this main html file I called rss-list.html

<!DOCTYPE html>
<html>
<head>
	<title>RSS List</title>
	<link rel="stylesheet" href="sencha-touch/resources/css/sencha-touch.css"/>
	<script type="text/javascript" src="sencha-touch/sencha-touch-debug.js"></script>
	<script type="text/javascript" src="apps.js"></script>
</head>
<body>
</body>
</html>

Cool mobile phone user interface concept

August 28th, 2009 by aditia rahman / 2 Comments