gpt4 book ai didi

android - 如何均匀对齐两个微调器?(%50-%50)

转载 作者:塔克拉玛干 更新时间:2023-11-03 00:51:53 26 4
gpt4 key购买 nike

我的意思是我有一条线,我想在其中放置 2 个水平的微调器。我想把它们放均匀。但我没有设置它。当我将它设置为 3,3 inc 屏幕时,它是其他屏幕的问题,因为我使用 dp 。我用什么? Lineerlayout 还是相对的? Anad 我如何设置它们?谢谢。

 <LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal" >





<Spinner
android:id="@+id/spinner1"
android:layout_width="309dp"
android:layout_height="wrap_content" />


<Spinner
android:id="@+id/spinner2"
android:layout_width="match_parent"
android:layout_height="wrap_content" />

</LinearLayout>

这是 IMG 来显示我的问题:http://img4host.net/viewer.php?img=220942354fe421eb92ec5

最佳答案

在线性布局中使用权重和......

<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:orientation="horizontal"
android:weightSum="1" >

<Spinner
android:id="@+id/spinner1"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".5" />

<Spinner
android:id="@+id/spinner2"
android:layout_width="0dp"
android:layout_height="wrap_content"
android:layout_weight=".5" />

</LinearLayout>

enter image description here

关于android - 如何均匀对齐两个微调器?(%50-%50),我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/11152070/

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