2013-05-05 119 views
5

我已經創建了一個自定義的TextView,我做的唯一的事情是我在佈局xml中放置了一個「實例」。 這會導致一個「膨脹異常」崩潰的應用程序:Android:自定義TextView膨脹異常

下面是完整的自定義類(其實沒有什麼「自定義」,在它尚未...):

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

回答

7

附加構造這樣

public MyTextView(Context context, AttributeSet attrs) { 
    super(context, attrs); 
} 

希望這有助於

3

添加構造函數

public MyTextView(Context context, AttributeSet attrs) 
+0

謝謝,做到了...... – fritz 2013-05-05 08:25:34