我创建了一个常见的xml文件common_linear_layout,它基本上具有宽度,高度和动态权重属性。
<LinearLayout
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="0dp"
android:layout_weight='@{weight_size}'></LinearLayout>
然后我想要包含任何重量大小的xml文件
<include
layout="@layout/common_linear_layout{'1'}" />
有可能吗?