开发者

Android application GUI Design

I have a problem in android application interface design(GUI).

For example when we insert an editText field the height is too big. Yes we can change the 开发者_开发技巧width and bit modify.

But does anyone have any link of a reference or idea of how to design the exact design we want. And when we add 2 -3 editText(views) the entire space finish. have to scroll to go through entire page.

And to design the GUI for all kind of screen sizes, what are the standard things that have to follow. I searched but didn't find exact answer.

Any link to a good reference or idea is highly appreciated.

Thank you


set the layout of text edit with:

layout_width="wrap_content" //wrap_content fill the dimension like the content and fill_content all the space free
layout_height="wrap_content"


In order to make your app resolution free you have to take care for the following items

  1. Widgets in your activity (wrap_content, match_parent, fill_parent, or left, right gravity in relative layout etc)

  2. Icons and Images in your activity (You have to keep icons of 3 different sizes in 3 different drawable folders, hdpi, mdpi and ldpi and if you are making your app for tablets also then xdpi (i think))

  3. You have to provide similar text sizes for different screen sizes (3 sizes should be suffice I believe) You can make a general xml file for this and keep it in another drawable folder.

Let me know if you need more detail on this.

0

上一篇:

下一篇:

精彩评论

暂无评论...
验证码 换一张
取 消

最新问答

问答排行榜