Android:我在layout / custom.xml中构建自定义视图如何知道它的包名称

时间:2012-09-28 16:37:02

标签: android android-layout

我有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>

但它不起作用。

1 个答案:

答案 0 :(得分:1)

请尝试使用include标记。

<include layout="@layout/custom"
    android:id="@+id/custom1"
    android:layout_width="fill_parent"
    android:layout_height="wrap_content" />