gpt4 book ai didi

Android放置一个按钮 "center horizontally+marginLeft"

转载 作者:太空狗 更新时间:2023-10-29 15:54:17 26 4
gpt4 key购买 nike

我只需要在屏幕上平行放置两个按钮(每个按钮的宽度为 50dp)。第一个应该有 margin left 10dp 并且放置没问题。

但是第二个按钮应该放置在屏幕中,并在中间(水平)向左留出 30dp 的距离。我需要做的是它应该从我用箭头指示的地方开始。

enter image description here

我的设计xml如下。使用 LinearLayout 或 RelativeLayout 并不重要。

<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#634785" >

<Button
android:id="@+id/button1"
android:layout_width="50dp"
android:layout_height="wrap_content"
android:text="B1"
android:layout_marginLeft="10dp" />

<Button
android:id="@+id/button2"
android:layout_width="50dp"
android:layout_height="wrap_content"
android:text="B2"
android:layout_centerHorizontal="true"
android:layout_marginLeft="30dp />
</RelativeLayout>

最佳答案

在容器的中心放置一个不可见 View (0dp 宽和高),并根据需要将第二个按钮相对于它对齐:

<RelativeLayout
android:id="@+id/relativeLayout1"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:background="#634785" >

<Button
android:id="@+id/button1"
android:layout_width="50dp"
android:layout_height="wrap_content"
android:text="B1"
android:layout_marginLeft="10dp"
/>

<Button
android:id="@+id/container_center"
android:layout_centerInParent="true"
android:layout_width="0dp"
android:layout_height="0dp"
/>

<Button
android:id="@+id/button2"
android:layout_width="50dp"
android:layout_height="wrap_content"
android:text="B2"
android:layout_toRightOf="@+id/container_center"
android:layout_marginLeft="30dp"
/>

</RelativeLayout>

关于Android放置一个按钮 "center horizontally+marginLeft",我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16648531/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com