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" />

猜你喜欢

转载自blog.csdn.net/zhangjin1120/article/details/114737212