eclipse - Android: Issues transitioning to the next .java? -
i'm little confused... after animation, splash screen supposed start intent function operate next .java activity file... when runs after splash screen in emulator, wont work. opened logcat , said extent of java.lang.nullpointer , runtime exception running @ pause feature... can explain me? thanks. package com.unicorn.test.whee; import android.app.activity; import android.content.intent; import android.os.bundle; import android.view.animation.animation; import android.view.animation.animation.animationlistener; import android.view.animation.animationutils; import android.widget.imageview; public class splashscreenpear extends activity { imageview pearfade; /** called when activity first created. */ public void oncreate(bundle savedinstancestate) { super.oncreate(savedinstancestate); setcontentview(r.layout.pear); } private void startanimating(){ animation pearfadeact = animationutils.loadanimation(this, r.anim.fadein); imageview pearfade = (imageview) findview...