Android:如何制作包含多个视图的CustomView,以便我可以添加更多视图

时间:2014-06-30 04:16:44

标签: android xml layout android-custom-view multiple-views

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_alignParentBottom="true"
android:layout_alignParentTop="true"
android:layout_centerHorizontal="true" >

<ScrollView
    android:id="@+id/VScroll"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignParentBottom="true"
    android:layout_below="@+id/zoom"
    android:layout_centerHorizontal="true"
    android:scrollbars="none" >

    <HorizontalScrollView
        android:id="@+id/horizontalScrollView1"
        android:layout_width="match_parent"
        android:layout_height="wrap_content"
        android:scrollbars="none" >

        <RelativeLayout
            android:layout_width="1600dp"
            android:layout_height="1600dp" >

            //..............................

        </RelativeLayout>
    </HorizontalScrollView>
</ScrollView>
</RelativeLayout>

我如何制作一个类似于上面代码的自定义视图,自定义视图之间的所有内容都将它放在//.......................所在的位置。 所以换句话说,使用上面的自定义视图,我可以这样做:

 <customview
            android:layout_width="1600dp"
            android:layout_height="1600dp" >

            <ImageButton
                android:id="@+id/I01"
                android:layout_width="60dp"
                android:layout_height="60dp"
                android:layout_marginLeft="214dp"
                android:layout_marginTop="71dp"
                android:onClick="Level01"
                android:src="@drawable/buttongrey"
                android:text="01"
                android:visibility="visible" />
</customview

0 个答案:

没有答案