androidstudio 自定义控件
我定义了一个控件继承View但是提示说:Thefollowingclassescouldnotbefound控件:packagecom.example.melo.myap...
我定义了一个控件继承View
但是提示说:
The following classes could not be found
控件:
package com.example.melo.myapp1;import android.content.Context;import android.graphics.Canvas;import android.graphics.Color;import android.graphics.Paint;import android.util.AttributeSet;import android.view.View;/** * Created by melo on 2015/7/23. */public class MyView extends View{ public MyView(Context context){ super(context); } @Override protected void onDraw(Canvas canvas) { Paint paint = new Paint(); paint.setColor(Color.RED); }}
大家帮忙看一下 展开
但是提示说:
The following classes could not be found
控件:
package com.example.melo.myapp1;import android.content.Context;import android.graphics.Canvas;import android.graphics.Color;import android.graphics.Paint;import android.util.AttributeSet;import android.view.View;/** * Created by melo on 2015/7/23. */public class MyView extends View{ public MyView(Context context){ super(context); } @Override protected void onDraw(Canvas canvas) { Paint paint = new Paint(); paint.setColor(Color.RED); }}
大家帮忙看一下 展开
1个回答
展开全部
你的自定义控件只实现了一个参数的构造方法
View有三个构造方法
public View(Context context)
public View(Context context, AttributeSet attrs)
public View(Context context, AttributeSet attrs, int defStyle)
要在布局中使用自定义控件,控件必须实现带参数AttributeSet的构造方法,实例化布局的时候会调用这个方法去实例化控件,否则就会报你图上的错误
另外引用自定义控件的时候必须用包名.类名的方式,否则也会报错
推荐律师服务:
若未解决您的问题,请您详细描述您的问题,通过百度律临进行免费专业咨询