Android UI examples [closed]

我只是一个虾纸丫 提交于 2019-12-02 15:54:46

There is actually a nice web which explains the most usable UI Design patters used by many apps already: http://www.androidpatterns.com/

If you have no experience with Android UI but you know a little Java already, maybe this is something for you:

SimpleUi ( https://github.com/bitstars/SimpleUi )

The generated UI (code below):

The complete code to create this Android UI:

I use it in real applications, not only for fast prototyping or dialogs and its well tested over the years. The concept is based on the model view control principle and for most common scenarios there are ready to use components which automatically look correct on any device. I don't say it should be used for any UI (e.g. listviews should be done by hand) but for most usecases this should be quite handy ;) Oh and feel free to fork it and improve it further if you want

UI Patterns, shown on the Twitter app, but they're common on Android in general:

http://android-developers.blogspot.com/2010/05/twitter-for-android-closer-look-at.html

http://www.androiduipatterns.com/

Depending which pattern you want to implement, there are open source projects/samples out there, i.e. for the Quick Contact Bar, etc.

Check anddev.. normally there are nice examples of UI elements. Also some nice tutorials at mobiforge 1 and 2.

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