我有main.xml和custom.xml
我希望custom.xml与用户控件类似,所以我将这些标记放入mail.xml中,如下所示:
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent"
android:orientation="vertical"
android:background="#FFFFFF" >
<custom
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="fill_parent" />
<custom
xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_height="wrap_content"
android:layout_width="fill_parent" />
</LinearLayout>
但它不起作用。
答案 0 :(得分:1)
请尝试使用include标记。
<include layout="@layout/custom"
android:id="@+id/custom1"
android:layout_width="fill_parent"
android:layout_height="wrap_content" />