android 怎么把一个模块横向平分3个相同大小

 我来答
千锋教育
2015-12-04 · 做真实的自己 用良心做教育
千锋教育
千锋教育专注HTML5大前端、JavaEE、Python、人工智能、UI&UE、云计算、全栈软件测试、大数据、物联网+嵌入式、Unity游戏开发、网络安全、互联网营销、Go语言等培训教育。
向TA提问
展开全部

可以使用linearlayout布局的weight属性

比如下图效果就是横向3个大小相同的button


布局文件如下

<?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="0dp"
        android:layout_weight="1"
        android:layout_height="wrap_content"
        android:text="Button" />

    <Button
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="wrap_content"
        android:text="Button" />

    <Button
        android:layout_width="0dp"
        android:layout_weight="1"
        android:layout_height="wrap_content"
        android:text="Button" />

</LinearLayout>


android:weight属性使用时基本上是把width或者height设为0dp,这样控件便会按照weight值得比例分配大小,比如将上例子中的第一个button的weight设为2,三个空间宽度比例就成了2:1:1

百度网友b3fad0b
2015-02-02
知道答主
回答量:41
采纳率:0%
帮助的人:23.3万
展开全部
android:layout_weight 你可以尝试搜索一下这个并详细了解 在LineLayout下布局 把每个小块的android:layout_weight设置为1即为均分 但 http://www.cnblogs.com/carbs/archive/2012/07/03/2575474.html
本回答被提问者采纳
已赞过 已踩过<
你对这个回答的评价是?
评论 收起
推荐律师服务: 若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询

为你推荐:

下载百度知道APP,抢鲜体验
使用百度知道APP,立即抢鲜体验。你的手机镜头里或许有别人想知道的答案。
扫描二维码下载
×

类别

我们会通过消息、邮箱等方式尽快将举报结果通知您。

说明

0/200

提交
取消

辅 助

模 式