Android xml布局include中android:layout_below属性无法使用

Posted peak wang

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android xml布局include中android:layout_below属性无法使用相关的知识,希望对你有一定的参考价值。

经查阅资料,解决方案是重载android:layout_height,与android:layout_width

<include layout="@layout/layout">
    android:layout_height="match_parent"
    android:layout_width="match_parent"
    android:layout_below="@id/title_bar" />

以上是关于Android xml布局include中android:layout_below属性无法使用的主要内容,如果未能解决你的问题,请参考以下文章

为啥在eclipes为创建一个android布局文件在R中没有自动生成

Android中include标签的使用(打开引用布局,隐藏当前布局)

Android 样式布局

Android六大布局的介绍

android布局中使用include及需注意点

Android xml布局include中android:layout_below属性无法使用