您的位置:首页 > 移动开发 > Android开发

xml中使用include引入布局,layout属性设置不管用

2016-08-12 16:22 429 查看
背景:给新屏幕添加了一个搜索的功能,为了复用布局,使用include方式引用,父控件是RelativeLayout,设置layout_above属性不起作用。

方法:include中要重写width和height。

举例:

<?xml version="1.0" encoding="utf-8"?>

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"

    android:layout_width="match_parent"

    android:layout_height="match_parent"

    android:background="#fff" >

    <include layout="@layout/title_bar" />

    <include

        android:layout_width="match_parent"

        android:layout_height="wrap_content"
        android:layout_below="@id/layout_title"
        layout="@layout/search_bill" />

    <ListView
        android:id="@+id/listview_search_result"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:layout_above="@+id/layout_page"
        android:layout_below="@+id/ll_search"
        android:cacheColorHint="#00000000" />

    <include layout="@layout/paging_bottom" />

</RelativeLayout>
内容来自用户分享和网络整理,不保证内容的准确性,如有侵权内容,可联系管理员处理 点击这里给我发消息
标签:  android