|
|
|
|
|
by georgemcbay
5028 days ago
|
|
This is the best place to start: http://developer.android.com/guide/topics/ui/declaring-layou... Generally speaking, though, your question seems to imply that you expect the conversion process to be fairly direct, splitting up the image into little page sprites as is often done with web pages. That's not at all an ideal way to try to implement an Android UI. Unless you want to take the easy way out and make this a native app that wraps a WebView and do all the layout in HTML you're going to have to spend quite a bit of time reading about Android layouts, the Android resource system and Android styles, all of which are quite different than HTML/CSS. Everything you need to know is on that Android site, and be sure to look through the SDK examples as well. |
|