You will need to wrap your views inside LinearLayout and your linear layout inside something else:
<LinearLayout android:orientation="vertical"> <LinearLayout android:layout_width="wrap_content" android:layout_gravity="center_horizontal"> <View/> <View/> etc... </LinearLayout> </LinearLayout>
Make sure all your views are used by android:layout_width="wrap_content" . If you are working with RelativeLayout , this will be:
<RelativeLayout> <LinearLayout android:layout_width="wrap_content" android:layout_centerHorizontal="true"> <View/> <View/> <View/> </LinearLayout> </RelativeLayout>
Cristian
source share