使用相对布局的“toLeftof”时视图消失

发布于 2024-10-20 06:06:49 字数 707 浏览 2 评论 0原文

我正在使用 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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(2

‘画卷フ 2024-10-27 06:06:49

这是因为第一个是左对齐的;如果将第二个按钮放在第一个按钮的左侧,它将位于屏幕之外。

那么,如果你

android:layout_alignParentLeft="true"

更改为呢?

android:layout_alignParentRight="true"

在第一个按钮中

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

android:layout_alignParentLeft="true"

to

android:layout_alignParentRight="true"

in the first button?

柠栀 2024-10-27 06:06:49

如果您希望 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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文