我想知道是否可以将两个不同相对布局的兄弟姐妹彼此对齐。 例如,给定这个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>
我想将text1和text2相互对齐。可能吗?或者,还有其他方法来实现这样的事情吗? 谢谢!
答案 0 :(得分:1)
I would like to align text1 and text2 with each other. is it possible?
简单地说,否,它不是。
因为控件位于不同的(“并行”)容器中,所以它们彼此不可见。
alternately, is there some other way to achieve something like this?
幸运的是,是有:
将两个TextViews与父母的左侧和父母的祖父母左侧对齐。
尽管如果两个TextView都位于同一个容器中会更好。