android – 线性布局不对齐基线,相对布局不允许权重

android – 线性布局不对齐基线,相对布局不允许权重,第1张

概述我有一个垂直方向的线性布局,我在其中插入了几个视图组.其中之一是: <LinearLayout android:id="@+id/addedit_updowncontrol" android:layout_width="fill_parent" android:layout_height="wrap_content" android:layout_below="@+id/t 我有一个垂直方向的线性布局,我在其中插入了几个视图组.其中之一是:

<linearLayout   androID:ID="@+ID/addedit_updowncontrol"   androID:layout_wIDth="fill_parent"   androID:layout_height="wrap_content"   androID:layout_below="@+ID/textVIEw2"   androID:layout_marginBottom="5dp"    androID:orIEntation="horizontal">    <button        androID:ID="@+ID/addedit_btndecrement"        androID:layout_wIDth="wrap_content"        androID:layout_height="wrap_content"        androID:layout_alignParenttop="true"        androID:layout_alignParentleft="true"        androID:layout_weight="0.1"        androID:text="-" />    <EditText        androID:ID="@+ID/addedit_txtQuantity"        androID:layout_wIDth="wrap_content"        androID:layout_height="wrap_content"        androID:minWIDth="90dp"        androID:layout_weight="0.4"        androID:layout_alignParenttop="true"        androID:inputType="numberDecimal" />    <button        androID:ID="@+ID/addedit_btnIncrement"        androID:layout_wIDth="wrap_content"        androID:layout_height="wrap_content"        androID:layout_alignParenttop="true"        androID:layout_weight="0.1"        androID:layout_toleftOf="@+ID/addedit_units"        androID:text="+" />    <Spinner        androID:ID="@+ID/addedit_units"        androID:layout_wIDth="wrap_content"        androID:layout_height="wrap_content"            androID:layout_weight="0.4"        androID:layout_alignParenttop="true"    androID:layout_alignParentRight="true" /></linearLayout>

这给了我一个看起来像this的观点(对链接道歉,我希望有更好的方法).这是不可接受的,因为button没有与EditText对齐.

我尝试切换到relativeLayout,这给了我像this这样的东西.这是不可接受的,因为两个按钮( – )和()的宽度不同.

我想我想要实现的目标是:
(1)button的基线与行中的其他控件对齐.
(2)两个按钮宽度相同.

我似乎能够用RelativeLayout和(2)用LinearLayout实现(1)但不是两者都有.

有人可以帮我吗?

解决方法 使用

androID:gravity="center_vertical"

在你的线性布局中.所有项目都将居中

总结

以上是内存溢出为你收集整理的android – 线性布局不对齐基线,相对布局不允许权重全部内容,希望文章能够帮你解决android – 线性布局不对齐基线,相对布局不允许权重所遇到的程序开发问题。

如果觉得内存溢出网站内容还不错,欢迎将内存溢出网站推荐给程序员好友。

欢迎分享,转载请注明来源:内存溢出

原文地址: http://outofmemory.cn/web/1128459.html

(0)
打赏 微信扫一扫 微信扫一扫 支付宝扫一扫 支付宝扫一扫
上一篇 2022-05-30
下一篇 2022-05-30

发表评论

登录后才能评论

评论列表(0条)

保存