LinearLayout布局,include的三个layout重叠在一起了

Android 码拜 10年前 (2015-05-10) 1534次浏览 0个评论
 

<LinearLayout xmlns:android=”http://schemas.android.com/apk/res/android”
    xmlns:tools=”http://schemas.android.com/tools”
    android:layout_width=”match_parent”
    android:layout_height=”match_parent”
    android:background=”@drawable/simple_button_background_pressed”
    android:orientation=”vertical”
    tools:context=”com.example.aa.MainActivity”  >
    <include layout=”@layout/head”  android:id=”@+id/lay_head” />
<include layout=”@layout/center” android:id=”@+id/lay_center”  />
    <include layout=”@layout/buttom” android:id=”@+id/lay_buttom” />

</LinearLayout>

三个include的layout的内容重叠在一起了,只显示到head的内容

而不是一行显示head,一行显示center,一行显示buttom

请问是怎么回事呢?

up啊。。。。。
30分
在include里增加属性
weight是比例
android:layout_weight=”1″
android:layout_height=”0dp” 
android:layout_width=”match_parent”
感谢lS,结贴给分

CodeBye 版权所有丨如未注明 , 均为原创丨本网站采用BY-NC-SA协议进行授权 , 转载请注明LinearLayout布局,include的三个layout重叠在一起了
喜欢 (0)
[1034331897@qq.com]
分享 (0)

文章评论已关闭!