我正在 Android 中开发应用程序并遇到问题。我有两个类 A 和 B。它们的代码如下(例如):
public class A extends View {
//declaration of constructors
...
public class B extends Button {
//declaration of constructors
}
}
我尝试在设计器的 xml 中添加一个 B 类,但我收到一个错误,它什么也没添加。
<com.example.myproject.A.B
android:is="@+id/B1"
android:layout_wight="100dp"
android:layout_height="100dp"
.../>
什么是可能的错误以及如何使上面显示的类在 xml 设计器中没有错误?