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
展开全部
android:layout_weight 你可以尝试搜索一下这个并详细了解 在LineLayout下布局 把每个小块的android:layout_weight设置为1即为均分 但 http://www.cnblogs.com/carbs/archive/2012/07/03/2575474.html
本回答被提问者采纳
已赞过
已踩过<
评论
收起
你对这个回答的评价是?
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询
广告 您可能关注的内容 |