Android.HowToDefineCustomView
Custom View
Errors
E1 在使用自定义CustomView时,出现以下runtime error:
Android.View.InflateException: Binary XML File Line #LineNumber
Solution: 自定义的View 子类(例如,类名为: FixedImageView)需要实现以下构造方法:
public FixedImageView(Context context);
public FixedImageView(Context context, AttributeSet attrs);
public FixedImageView(Context context, AttributeSet attrs, int defStyle);
如果没有实现以上方法就会出现该Error。
Refereces
1. Custom Components
http://developer.android.com/guide/topics/ui/custom-components.html
2. Creating Custom Views
http://developer.android.com/training/custom-views/index.html
郑重声明:本站内容如果来自互联网及其他传播媒体,其版权均属原媒体及文章作者所有。转载目的在于传递更多信息及用于网络分享,并不代表本站赞同其观点和对其真实性负责,也不构成任何其他建议。