码迷,mamicode.com
首页 > 移动开发 > 详细

android运行时异常:Binary XML file line # : Error inflating class

时间:2017-07-31 23:53:54      阅读:969      评论:0      收藏:0      [点我收藏+]

标签:span   bin   oat   return   invalid   turn   ack   res   ontouch   

自定义View时出现的,搞了好半天终于搞好了。

继承View时要要实现它所有的构造函数。

如:

 1 public class hongdian extends View {
 2     float x=40;
 3     float y=50;
 4     Paint p = new Paint();
 5    //要实现的构造
 6     public hongdian(Context context) {
 7         super(context);
 8     }
 9    //要实现的构造函数 
10     public hongdian(Context context, @Nullable AttributeSet attrs) {
11         super(context, attrs);
12     }
13     //要实现的构造函数
14     public hongdian(Context context, @Nullable AttributeSet attrs, int defStyleAttr) {
15         super(context, attrs, defStyleAttr);
16     }
17       //要实现的构造函数
18     public hongdian(Context context, @Nullable AttributeSet attrs, int defStyleAttr, int defStyleRes) {
19         super(context, attrs, defStyleAttr, defStyleRes);
20     }
21 
22     @Override
23     protected void onDraw(Canvas canvas) {
24         super.onDraw(canvas);
25         p.setColor(Color.BLACK);
26         canvas.drawCircle(x,y,15,p);
27     }
28 
29     @Override
30     public boolean onTouchEvent(MotionEvent event) {
31         x = event.getX();
32         y = event.getY();
33         this.invalidate();
34         return true;
35     }
36 }

 

android运行时异常:Binary XML file line # : Error inflating class

标签:span   bin   oat   return   invalid   turn   ack   res   ontouch   

原文地址:http://www.cnblogs.com/super-age/p/7266269.html

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!