I need to lay a variable number of views (may just be one) next to each other like in LinearLayout. But I want the whole arrangement to be center aligned. The views should be next to each other. But the whole arrangement should be equidistant from the left and right edge of the screen or the containing parent. How can I accomplish this?
Tell me more
×
Facebook - Stack Overflow is a question and answer site for
facebook developers. It's 100% free, no registration required.
Facebook and Stack Exchange are now working together to support the Facebook developer community.
Facebook engineers participate here along with the best Facebook developers in the world.
If you have a technical question about Facebook, this is the best place to ask.
|
|
|
You will have to wrap your views inside a
Make sure all your views use
|
|||
|
|
|
This will do it for you android:layout_gravity="center_horizontal" Also you want to consider the weight property to make sure that this layout element takes priority over others. http://developer.android.com/reference/android/widget/LinearLayout.LayoutParams.html To group everything together you can use a Frame Layout or Relative Layout. |
|||
|
|