According to the Jesse Bishop blog , he implemented some gestures and I modified the code to support the Hold gesture so if you made hold for x seconds the object will be notified with this event

I will publish the code soon

Posted by: abouzaytouna | May 10, 2011

Force first letter to be capital in the phrase

I used this regular expressions in my project and i think it will be useful if someone need it

first letter capital without underscore support
\p{Lu}(\W*\p{Ll}*|\d*)*(\s+(\W*\p{Ll}*|\d*)*)*

with underscore support
\p{Lu}(\W*[_]*\p{Ll}*|\d*)*(\s+(\W*\p{Ll}*|\d*)*)*

first letter capital and can start with special characters and nos.
((\p{Lu}(\W*[_]*\p{Ll}*|\d*)*)|((\d|\W|[_])(\p{Ll}*|\d*)*)*)(\s+(\W*\p{Ll}*|\d*)*)*

Posted by: abouzaytouna | March 7, 2010

First Andorid Project

I started today to prepare to my first andorid project , I will post series to develop an andorid application that connect to  WCF Services

I will post the tool used, then I will go through the application

Categories

Follow

Get every new post delivered to your Inbox.