码迷,mamicode.com
首页 > 其他好文 > 详细

Include设置layout_*无效解决方法

时间:2014-05-13 07:12:47      阅读:389      评论:0      收藏:0      [点我收藏+]

标签:include   include无效   

在include标签中不能省略

layout_width或者layout_height否则设置layout_weight就会无效。如下设置即可


    <LinearLayout
        android:id="@+id/linearLayout1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
       android:layout_weight="0.0"
        android:background="@drawable/img_bg_index_selector"
        android:orientation="horizontal" >


        <include
            android:id="@+id/view_selector1"
            android:layout_weight="1.0"
               android:layout_height="wrap_content"
              android:layout_width="match_parent"
            layout="@layout/item_index_activity_selector" />


        <include
            android:id="@+id/view_selector2"
            android:layout_weight="1.0"
               android:layout_height="wrap_content"
              android:layout_width="match_parent"
            layout="@layout/item_index_activity_selector" />
    </LinearLayout>

Include设置layout_*无效解决方法,布布扣,bubuko.com

Include设置layout_*无效解决方法

标签:include   include无效   

原文地址:http://blog.csdn.net/z8711042/article/details/25646271

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!