Metro interface in Android applications

做~自己de王妃 提交于 2019-12-08 11:10:45

问题


I am a beginner in Android programming.

Is there somewhere a good tutorial for the development of modern interfaces in Android applications.

How do metro interface in Android applications?

For example:

Or how to make the interface as in the Android Market application.


回答1:


well, to have a multi page layout that you can swipe through, just use the ViewPager layout manager: http://developer.android.com/reference/android/support/v4/view/ViewPager.html

for the tile layout a GridLayout (http://developer.android.com/reference/android/widget/GridLayout.html) might be a good starting point for you.




回答2:


As far as I know there is no API support to make applications look like the Market application. Or rather; there is no standard style for this. If you want the UI to look like WP7/Win8 Metro style applications or like the Marketplace application you will probably have to make the style yourself.

You do have some recommendations and best practises when making Android UIs on the developers site. That's a good place to start:

http://developer.android.com/guide/practices/ui_guidelines/index.html

http://developer.android.com/guide/topics/ui/index.html



来源:https://stackoverflow.com/questions/8573389/metro-interface-in-android-applications

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!