Android LinearLayout布局中的对齐问题
我有一些个水平的LinearLayout排了几行按钮,平均分配宽度。但当按钮的文本较长出现换行时,就会出现对不齐的情况。如图:请问需要设置什么属性才能解决?或者换用其他L...
我有一些个水平的LinearLayout排了几行按钮,平均分配宽度。但当按钮的文本较长出现换行时,就会出现对不齐的情况。如图:
请问需要设置什么属性才能解决?或者换用其他Layout也行
应该跟行数没关系,比如整个xml就只有以下内容时:中间长文本的的也会对不齐
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="短文本" />
<Button
android:text="长文本长文本"
其余同上/>
<Button
android:text="短文本"
其余同上 />
</LinearLayout> 展开
请问需要设置什么属性才能解决?或者换用其他Layout也行
应该跟行数没关系,比如整个xml就只有以下内容时:中间长文本的的也会对不齐
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="horizontal" >
<Button
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:layout_weight="1"
android:text="短文本" />
<Button
android:text="长文本长文本"
其余同上/>
<Button
android:text="短文本"
其余同上 />
</LinearLayout> 展开
6个回答
展开全部
如果使用组件对齐方式,比较简单的是RelativeLayout,linearLayout必须设置android:layout_weight,这个属性是说它在布局中所占的比例,关键是他是横向的,不好用,除了某些特殊情况。
本回答被网友采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
你把match_parent换成wrap_content,当然,这个时候的layout_weight的值也需要重新调整,我已经试过可以的
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
android:layout_width="match_parent"
android:layout_height="wrap_content"
把match_parent改成数值,比如:50dp
android:layout_height="wrap_content"
把match_parent改成数值,比如:50dp
追问
我试过了,没有解决问题
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
注意高度的设置值
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
展开全部
一个竖直LinearLayout嵌套4个水平的LinearLayout不可以吗?
更多追问追答
追问
我就是这种方法,结果就是图中的样子
追答
4个水平布局都设置权重了吗?
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询