Ahm,嘿,大家,我只想問在我創建的程序中有什麼問題。下面是摘錄代碼調用公共方法導致NullPointerException - Android
PlayActivity.class
//more codes here
public void stFLabel(int numFace, Context ct) {
try {
if(numFace > 0)
faceLebel.setText("Face Hint : I See You Human");
else
faceLebel.setText("Face Hint : Where Are You?");
}
catch(NullPointerException e)
{
e.printStackTrace();
Log.d(TAG, "stFLabel Has Error");
}
}
//more codes here
* CameraPreview.class *
//More codes
...
PlayActivity pacT = new PlayActivity();
...
//More Codes
..
public void pausy(int numFace) {
pacT.stFLabel(numFace, mContext);
}
logcat的
04-05 16:11:26.150: D/FaceDetection(27929): face detected: 1 Face 1 Location X: 65Y: -1
04-05 16:11:26.150: W/System.err(27929): java.lang.NullPointerException
04-05 16:11:26.150: W/System.err(27929): at com.delihente.faceplay.PlayActivity.stFLabel(PlayActivity.java:90)
04-05 16:11:26.150: W/System.err(27929): at com.delihente.faceplay.CameraPreview.pausy(CameraPreview.java:62)
04-05 16:11:26.150: W/System.err(27929): at com.delihente.faceplay.CameraPreview$1.onFaceDetection(CameraPreview.java:53)
04-05 16:11:26.150: W/System.err(27929): at android.hardware.Camera$EventHandler.handleMessage(Camera.java)
04-05 16:11:26.150: W/System.err(27929): at android.os.Handler.dispatchMessage(Handler.java)
04-05 16:11:26.150: W/System.err(27929): at android.os.Looper.loop(Looper.java)
04-05 16:11:26.150: W/System.err(27929): at android.app.ActivityThread.main(ActivityThread.java)
04-05 16:11:26.150: W/System.err(27929): at java.lang.reflect.Method.invokeNative(Native Method)
04-05 16:11:26.150: W/System.err(27929): at java.lang.reflect.Method.invoke(Method.java:511)
04-05 16:11:26.150: W/System.err(27929): at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java)
04-05 16:11:26.150: W/System.err(27929): at com.android.internal.os.ZygoteInit.main(ZygoteInit.java)
04-05 16:11:26.150: W/System.err(27929): at dalvik.system.NativeStart.main(Native Method)
04-05 16:11:26.150: D/(27929): stFLabel Has Error
更多信息:
PlayAcvitiy.class extends Activity (Main Class)
CameraPreview.class - The camera preview class provided by google android development
faceLebel = TextView on PlayAcvitiy.class
mContext = PlayActivity.class Context
我想知道是什麼原因造成的NullPointerException異常(A修復會更好), 我看了一下我的問題,近3頁的谷歌搜索,但沒有它具有幫助過我。 也請不要提及將方法更改爲static,因爲它不能因爲它在CameraPreview.class檢測到/未檢測到面時更改TextView標籤。 在此先感謝!
編輯:我也看過很多相關的問題在這裏,但他們都不來幫助
編輯2:問題迎刃而解,感謝所有,特別是對PrafulBhatnagar,我已經瞭解到,使用方法在主要活動中需要參考其上下文。感謝大家!
嘗試'((PlayActivity)mContext ).stFLabel(numFace,mContext);'...假設'mContext'存儲對'PlayActivity'的引用 – 2013-04-05 08:23:55
你試圖從一個空對象中調用/獲取某些東西。當你調用setText()時,它可能是「faceLebel」。調試它 – 2013-04-05 08:24:41
'faceLebel'是否正確聲明?似乎它是唯一可以拋出的東西。 – Skepi 2013-04-05 08:25:54