views:

106

answers:

1

hello all, so Im messing with imageviews and I am able to align a single imageview in the center horizontally with

android:layout_centerHorizontal="true"

Now my main problem is that I have X imageviews and when I align them all like that, and then use the android:layout_toRightOf="", they just start from the middle.

What to do?

A: 

a fast solution you will align the first to the left then the next imageviews toRightOf= (delete android:layout_centerHorizontal="true" from your layout)

Jorgesys
yeah, but I want it all centered :)
Android Noob