Tell me more ×
Stack Overflow is a question and answer site for professional and enthusiast programmers. It's 100% free, no registration required.

I am using Absolute layout for my UI design in android.

My doubt is which layout is best for UI design in android and Is it the design is change in any other device. That means i am using HTC Desire to test my application if i installed my app in any other app means the design is change or look like same

Thanks in Advance

share|improve this question

3 Answers

up vote 6 down vote accepted

AbsoluteLayout is definitely worst-practice for android.

Get to love the RelativeLayout. It will make your life much easier, when designing for multiple resolutions/densities. If you have an old SDK, update your eclipse plugin. It has graphical snap-lines for RelativeLayouts similar to designing a form in Visual Studio, so you can see what is anchored where. It's really quite good.

share|improve this answer

Do not use AbsoluteLayout! The JavaDoc says:

This class is deprecated. Use FrameLayout, RelativeLayout or a custom layout instead.

Those layouts will adapt to different screen sizes, whereas AbsoluteLayout will not.

share|improve this answer
2  
Definitely right. I recommend RelativeLayout since it keeps the view hierachy flat. It takes some time to get used to it, but its well worth it imho. – user658042 Jun 28 '11 at 16:31
@alextsc Agreed! The latest updates to the Eclipse plugin make it even easier to use RelativeLayout as well. – elevine Jun 28 '11 at 16:34
Can we use Absolute layout inside the Relative layout.Is that make any problem – Krishna Jun 30 '11 at 0:36
You can, but you shouldn't! – elevine Jul 3 '11 at 16:23

Depends on your design. It's a nice question. Layouts are a very important concept of desiging. I usually prefer linearLayout and relative layout.

Use frameLayout if you want to display a textView on an ImageView and don't worry about different handsets. It will adapt accordingly. Study Nine-patch image.

share|improve this answer

Your Answer

 
discard

By posting your answer, you agree to the privacy policy and terms of service.

Not the answer you're looking for? Browse other questions tagged or ask your own question.