比如在类com.example.ClassA中定义了一个类ViewB,那么怎么样在xml中引用ViewB呢?

    首先要注意的是ViewB定义的时候,必须定义成静态的,就是public static ViewB

 

ViewB 继承自View,那么在xml中可以这样定义(ClassA和ViewB之间是"$",不是".")

    

1. <View
2. class="com.example.ClassA$ViewB"
3. android:layout_width="match_parent"
4. android:layout_height="match_parent" />

 

    假设ViewB继承自ViewGroup,那么在xml中可以这样定义(ClassA和ViewB之间是"$",不是".")

 

1. <ViewGroup
2. class="com.example.ClassA$ViewB"
3. android:layout_width="match_parent"
4. android:layout_height="match_parent" >
5. <!-- ViewGroup内部的一些控件,比如button之类的 -->
6. </ViewGroup>