我已经制作了像这样的customView
class MyCustomView extends View {
public MyCustomView(Context context, AttributeSet attrs,
int defStyle) {
super(context, attrs, defStyle);
}
}
我在布局和给定属性中使用它将高度设置为WRAP_CONTENT,但在UI上这覆盖了整个屏幕?为什么会这样?是什么让它成为全屏?
当我去setBackgroundColor()时,它也无法正常工作