以前做iOS的,android水平属于渣渣以下,现在做界面都感觉是在吃糠,写一段查半天。心累到不想说话。
今天主要是遇到界面上三个空间并排排列,平分界面,其实就是和支付宝下面那些选项卡一样。
不讲中间的坑了,直接上结果:
设置参数:layout_weight = 1;
一个LeanerLayout里面的控件都把layout_weight设一样的就可以实现平分,LeanerLayourt是水平的就水平平分,竖直的就竖直平分。
示例:
android:layout_width="match_parent"
android:layout_height="@dimen/y360"
android:orientation="horizontal"
android:background="@color/actionsheet_red">
android:layout_width="wrap_content"
android:layout_weight="1"
android:layout_gravity="center"
android:layout_height="match_parent">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="sssssssss"/>
android:layout_width="wrap_content"
android:layout_weight="1"
android:orientation="horizontal"
android:layout_height="match_parent">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="vvvvvvvvvvv"/>
android:layout_width="wrap_content"
android:layout_weight="1"
android:layout_gravity="center"
android:layout_height="match_parent">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="sssssssss"/>
android:layout_width="match_parent"
android:layout_height="@dimen/y360"
android:orientation="horizontal"
android:background="@color/black">
android:layout_width="wrap_content"
android:layout_weight="1"
android:layout_gravity="center"
android:layout_height="@dimen/y360">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="sssssssss"/>
android:layout_width="wrap_content"
android:layout_weight="1"
android:layout_height="@dimen/y360">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="vvvvvvvvvvv"/>
android:layout_width="wrap_content"
android:layout_weight="1"
android:layout_gravity="center"
android:layout_height="@dimen/y360">
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:gravity="center"
android:text="sssssssss"/>
更详细的参考下面链接:http://blog.youkuaiyun.com/chy800/article/details/46397927