如何设置动态权重属性并调用另一个xml文件android?

时间:2016-11-22 21:36:19

标签: android android-layout android-linearlayout

我创建了一个常见的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'}" />

有可能吗?

0 个答案:

没有答案