使用相对布局的“toLeftof”时视图消失
我正在使用 Android 的相对布局,试图使两个按钮并排对齐。 但是,当我使用layout_toLeftOf时,我的button02突然消失了。 如果我使用layout_toRightof就可以了。有人知道为什么吗?
<Button
android:id="@+id/Button01"
android:layout_alignParentLeft="true"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@+id/Button01">
</Button>
<Button
android:id="@+id/Button02"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@+id/Button02"
android:layout_toLeftOf="@+id/Button01"
android:layout_alignTop="@+id/Button01"
android:layout_alignBottom="@+id/Button01"
>
</Button>
I'm using Android's relativelayout, trying to make two buttons align side by side.
But, when I use layout_toLeftOf, my button02 suddenly disappear.
It's fine if I use layout_toRightof. Anyone knows why?
<Button
android:id="@+id/Button01"
android:layout_alignParentLeft="true"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@+id/Button01">
</Button>
<Button
android:id="@+id/Button02"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:text="@+id/Button02"
android:layout_toLeftOf="@+id/Button01"
android:layout_alignTop="@+id/Button01"
android:layout_alignBottom="@+id/Button01"
>
</Button>
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
这是因为第一个是左对齐的;如果将第二个按钮放在第一个按钮的左侧,它将位于屏幕之外。
那么,如果你
更改为呢?
在第一个按钮中
That's because the first one is aligned to the left; if you put the second button to the left of the first one, it will be outside the screen.
So, what if you change
to
in the first button?
如果您希望 Button2 位于 Button1 的左侧,为什么要放置alignTop 和alignBottom 属性?请删除它并查看。如果您希望将 Button1 放置在右侧,还请删除 Button1 的alignParentLeft。
If you want Button2 to be left of Button1, why are you placing alignTop and alignBottom properties? Please remove that and see. Also remove alignParentLeft for Button1, if you want Button1 to be placed at the right side.