ladies and gentlemen!
Very often on my job I meet the following requirement from the client, when developing android applications: \"make it look like and iPhone app\".
There is no library to port iphone views to Android but if you are starting both applications from the scratch you have two possible approach to share views between both platforms.
First one is using WebView
s and coding HTML
, JS
and CSS
. This kind of app is called hybrid.
Second one is using openGL. You can do it directly or using a framework like cocos2d-x.
Depending on what you are willing to you should choose what to use.