I have an application where I want achive a layout where the product image will be the background and the top of that to the right bottom, I want to place the price of the product and to the left bottom I want to place an add button.

Should I use frame layout or relative layout ???

link|improve this question

18% accept rate
1  
Accept previous asked questions to increase your accept rate. – Vinod Maurya Dec 27 '11 at 9:09
1  
Better you check this question: How does accepting an answer work? – Paresh Mayani Dec 27 '11 at 9:15
could you explain by screen drawing? – Wing Xu Dec 27 '11 at 9:42
feedback

1 Answer

RelativeLayout will be more appropriate in this case

  • Frame layout is used to display a single view at a time. The view can contain many widgets but only one will appear at a time.
  • RelativeLayout is a ViewGroup that displays child View elements in relative positions.Whenever there is any relationship (either left, right, above, below etc) between two or more views. relativelayout is prefered.
link|improve this answer
feedback

Your Answer

 
or
required, but never shown

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