English 中文(简体)
Anders Spinner have Null PointerException
原标题:Android Spinner get NullPointerException

I m试图利用以下手段创建Spinner。 但我收到<条码>NullPointerException。

        Register.registerlist.setAdapter(spinnernamelist);  

谁能帮助我? 谢谢。

ArrayAdapter<String> spinnernamelist= new ArrayAdapter<String>(this,android.R.layout.simple_spinner_item, Register.namelist);
    spinnernamelist.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
    Register.registerlist=(Spinner)findViewById(R.id.showlist);
    Register.registerlist.setAdapter(spinnernamelist);   

Mylogcat输出 -

11-22 07:43:30.881: E/AndroidRuntime(1200): java.lang.IllegalStateException: Could not execute method of the activity
11-22 07:43:30.881: E/AndroidRuntime(1200):     at android.view.View$1.onClick(View.java:3019)
11-22 07:43:30.881: E/AndroidRuntime(1200):     at android.view.View.performClick(View.java:3460)
11-22 07:43:30.881: E/AndroidRuntime(1200):     at android.view.View$PerformClick.run(View.java:13955)
11-22 07:43:30.881: E/AndroidRuntime(1200):     at android.os.Handler.handleCallback(Handler.java:605)
11-22 07:43:30.881: E/AndroidRuntime(1200):     at android.os.Handler.dispatchMessage(Handler.java:92)
11-22 07:43:30.881: E/AndroidRuntime(1200):     at android.os.Looper.loop(Looper.java:137)
11-22 07:43:30.881: E/AndroidRuntime(1200):     at android.app.ActivityThread.main(ActivityThread.java:4340)
11-22 07:43:30.881: E/AndroidRuntime(1200):     at java.lang.reflect.Method.invokeNative(Native Method)
11-22 07:43:30.881: E/AndroidRuntime(1200):     at java.lang.reflect.Method.invoke(Method.java:511)
11-22 07:43:30.881: E/AndroidRuntime(1200):     at com.android.internal.os.ZygoteInit$MethodAndArgsCaller.run(ZygoteInit.java:784)
11-22 07:43:30.881: E/AndroidRuntime(1200):     at com.android.internal.os.ZygoteInit.main(ZygoteInit.java:551)
11-22 07:43:30.881: E/AndroidRuntime(1200):     at dalvik.system.NativeStart.main(Native Method)
11-22 07:43:30.881: E/AndroidRuntime(1200): Caused by: java.lang.reflect.InvocationTargetException
11-22 07:43:30.881: E/AndroidRuntime(1200):     at java.lang.reflect.Method.invokeNative(Native Method)
11-22 07:43:30.881: E/AndroidRuntime(1200):     at java.lang.reflect.Method.invoke(Method.java:511)
11-22 07:43:30.881: E/AndroidRuntime(1200):     at android.view.View$1.onClick(View.java:3014)
11-22 07:43:30.881: E/AndroidRuntime(1200):     ... 11 more
11-22 07:43:30.881: E/AndroidRuntime(1200): Caused by: java.lang.NullPointerException
11-22 07:43:30.881: E/AndroidRuntime(1200):     at Picture.Capture.Register.callPictureTake(Register.java:56)
最佳回答

明显无效,因此,<代码>Registerlist必须取消。 findViewById(......),如果在活动母体内看不到该识别符号,则该编号无效。 确保你推荐的身份证确实是你要求它参加的活动。

问题回答

很可能,<代码>Registerlist是无效的,在你试图对其实施某种方法时,你会获得一个无效的例外。

• 正确开标





相关问题
Android - ListView fling gesture triggers context menu

I m relatively new to Android development. I m developing an app with a ListView. I ve followed the info in #1338475 and have my app recognizing the fling gesture, but after the gesture is complete, ...

AsyncTask and error handling on Android

I m converting my code from using Handler to AsyncTask. The latter is great at what it does - asynchronous updates and handling of results in the main UI thread. What s unclear to me is how to handle ...

Android intent filter for a particular file extension?

I want to be able to download a file with a particular extension from the net, and have it passed to my application to deal with it, but I haven t been able to figure out the intent filter. The ...

Android & Web: What is the equivalent style for the web?

I am quite impressed by the workflow I follow when developing Android applications: Define a layout in an xml file and then write all the code in a code-behind style. Is there an equivalent style for ...

TiledLayer equivalent in Android [duplicate]

To draw landscapes, backgrounds with patterns etc, we used TiledLayer in J2ME. Is there an android counterpart for that. Does android provide an option to set such tiled patterns in the layout XML?

Using Repo with Msysgit

When following the Android Open Source Project instructions on installing repo for use with Git, after running the repo init command, I run into this error: /c/Users/Andrew Rabon/bin/repo: line ...

Android "single top" launch mode and onNewIntent method

I read in the Android documentation that by setting my Activity s launchMode property to singleTop OR by adding the FLAG_ACTIVITY_SINGLE_TOP flag to my Intent, that calling startActivity(intent) would ...

From Web Development to Android Development

I have pretty good skills in PHP , Mysql and Javascript for a junior developer. If I wanted to try my hand as Android Development do you think I might find it tough ? Also what new languages would I ...

热门标签