0

ImageView にアクセスして変更するには、2 番目のクラスを介して (Activity から継承) したかったのです。残念ながら、これを試みると NullPointerExeption が発生します。2 番目のクラスには XML も onCreate () メソッドもありません。いくつかの機能が必要なため、アクティビティからのみ継承します。

では、レイアウトやその他のコンポーネントにどのようにアクセスするのでしょうか?

これが私の2番目のクラスのコードです。

public void changeLoerg() {
    int stufe;
    //layout = (RelativeLayout)findViewById(R.id.LayoutMain);
    imageViewLoerg = (ImageView)findViewById(R.id.imageViewLoerg);

    stufe = SettingsLoerg.getLevel(context);

    Object tag = imageViewLoerg.getTag();

    if (stufe == 1) {
        int loergId = R.drawable.animatedegg;

        if( tag != null && ((Integer)tag).intValue() == loergId) {
            loergId = R.drawable.animatedloerg;
            animatedLoerg.stop();
            //playAnimationNodelay();
            imageViewLoerg.setTag(loergId);
            imageViewLoerg.setBackgroundResource(loergId);
            playAnimationNodelay();
        }
    }
}

以下の LogCat を使用します。

01-05 21:34:39.685: W/dalvikvm(9905): threadid=1: thread exiting with uncaught exception (group=0x41b5b300)
01-05 21:34:39.693: E/AndroidRuntime(9905): FATAL EXCEPTION: main
01-05 21:34:39.693: E/AndroidRuntime(9905): java.lang.NullPointerException
01-05 21:34:39.693: E/AndroidRuntime(9905):     at android.app.Activity.findViewById(Activity.java:1825)
01-05 21:34:39.693: E/AndroidRuntime(9905):     at at.android.dertestloerk.TimerLoerg.changeLoerg(TimerLoerg.java:42)
01-05 21:34:39.693: E/AndroidRuntime(9905):     at at.android.dertestloerk.TimerLoerg$1.run(TimerLoerg.java:100)
01-05 21:34:39.693: E/AndroidRuntime(9905):     at android.os.Handler.handleCallback(Handler.java:615)
01-05 21:34:39.693: E/AndroidRuntime(9905):     at android.os.Handler.dispatchMessage(Handler.java:92)
01-05 21:34:39.693: E/AndroidRuntime(9905):     at android.os.Looper.loop(Looper.java:137)
01-05 21:34:39.693: E/AndroidRuntime(9905):     at android.app.ActivityThread.main(ActivityThread.java:4745)
01-05 21:34:39.693: E/AndroidRuntime(9905):     at java.lang.reflect.Method.invokeNative(Native Method)
01-05 21:34:39.693: E/AndroidRuntime(9905):     at java.lang.reflect.Method.invoke(Method.java:511)
01-05 21:34:39.693: E/AndroidRuntime(9905):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:786)
01-05 21:34:39.693: E/AndroidRuntime(9905):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:553)
01-05 21:34:39.693: E/AndroidRuntime(9905):     at dalvik.system.NativeStart.main(Native Method)
4

1 に答える 1

0

View変更したいこのクラスがある場合は、そのクラス内にメソッドを作成して、上記を変更する必要がありますView。次に、でメソッドを呼び出し、Activity必要なものをパラメータとして渡すことができます。

public class BackGround { // please don't extend Activity unless it is one

    private ImageView img;

    ....

    public void changeLoerg(int resourceId) {
        img.setBackgroundResource(resourceId);      
    }
}
于 2013-01-06T00:06:23.620 に答える