6

カスタム TextView を作成しましたが、レイアウト xml に 1 つの「インスタンス」を配置しただけです。これにより、「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)で使用されるクラスパスは正しいようです-Intelj IDEAはそれを提案しました...

ところで: 最小ターゲット SDK バージョンは 10 に設定されています。

4

2 に答える 2

9

このようにコンストラクタを追加します

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

お役に立てれば

于 2013-05-05T08:22:41.187 に答える
4

コンストラクタを追加

public MyTextView(Context context, AttributeSet attrs)
于 2013-05-05T08:14:53.803 に答える