I was wondering if it's possible to align 2 siblings of different relative layouts with each other. for instance, given this XML:
<RelativeLayout>
..
<RelativeLayout android:id="@+id/layout1" >
..
<TextView android:id="@+id/text1 />
</RelativeLayout>
<RelativeLayout android:id="@+id/layout2" >
..
<TextView android:id="@+id/text2 />
</RelativeLayout>
</RelativeLayout>
I would like to align text1 and text2 with each other. is it possible? or alternately, is there some other way to achieve something like this? thanks!!