Android:自定义TextView Inflate例外

我创建了一个自定义TextView,我唯一做的就是在布局xml中放置一个“实例”.
这会导致应用程序崩溃并出现“Inflate Exception”:

这是完整的自定义类(实际上它还没有“自定义”……):

package com.example.TestApp;
...
public  class MyTextView extends TextView {

public MyTextView (Context context) {
    super(context);
}

@Override
protected void onMeasure(int widthMeasureSpec,int heightMeasureSpec) {
    super.onMeasure(widthMeasureSpec,heightMeasureSpec);        }


@Override
public void onDraw(Canvas canvas) {

    super.onDraw(canvas);

}

}

完整的布局文件

<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
          android:orientation="vertical"
          android:layout_width="fill_parent"
          android:layout_height="fill_parent">

<com.example.TestApp.MyTextView
    android:layout_width="fill_parent"
    android:layout_height="wrap_content"
    android:text="Hello World,MyActivity"
    />
</LinearLayout>

日志是:

java.lang.RuntimeException: Unable to start activity 
ComponentInfo{com.example.TestApp/com.example.TestApp.MyActivity}: 
android.view.InflateException: Binary XML file line #8: Error inflating class 
com.example.TestApp.MyTextView
    at android.app.ActivityThread.performlaunchActivity(ActivityThread.java:1651)
    at android.app.ActivityThread.handleLaunchActivity(ActivityThread.java:1667)
    at android.app.ActivityThread.access$1500(ActivityThread.java:117)
    at android.app.ActivityThread$H.handleMessage(ActivityThread.java:935)
    at android.os.Handler.dispatchMessage(Handler.java:99)
    at android.os.Looper.loop(Looper.java:130)
    at android.app.ActivityThread.main(ActivityThread.java:3691)
    at java.lang.reflect.Method.invokeNative(Native Method)
    at java.lang.reflect.Method.invoke(Method.java:507)
    at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:912)
    at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:670)
    at dalvik.system.NativeStart.main(Native Method)

我已经阅读了很多关于这些膨胀例外情况的帖子,但这一次它确实是最简单的案例. xml(com.example.TestApp.MyTextView)中使用的类路径似乎是正确的 – Intellj IDEA甚至建议它……

顺便说一句:最小目标sdk版本设置为10.

解决方法

像这样添加构造函数
public MyTextView(Context context,AttributeSet attrs) {
    super(context,attrs);
}

希望这可以帮助

相关文章

Android性能优化——之控件的优化 前面讲了图像的优化,接下...
前言 上一篇已经讲了如何实现textView中粗字体效果,里面主要...
最近项目重构,涉及到了数据库和文件下载,发现GreenDao这个...
WebView加载页面的两种方式 一、加载网络页面 加载网络页面,...
给APP全局设置字体主要分为两个方面来介绍 一、给原生界面设...
前言 最近UI大牛出了一版新的效果图,按照IOS的效果做的,页...