English 中文(简体)
Null PointerException in spinner in android
原标题:Null PointerException in spinner in android
  • 时间:2011-10-12 07:13:42
  •  标签:
  • java
  • android

我在安康工作。 我想设计一个歌曲的主轴。

这是我的法典:

public Spinner spinner_category_forSong;

String[] arr_Category={"Select","sad","dj","rock"};

ArrayAdapter<String> adapter = new ArrayAdapter<String>(
    this,android.R.layout.simple_spinner_item,arr_Category);

spinner_category_forSong = (Spinner)findViewById(R.id.Spinner_category_forUpload);    
spinner_category_forSong.setPrompt("Music Category :");
spinner_category_forSong.setAdapter(adapter);

但是,在我管理项目时,在<代码>spinner_ category_forSong.setPrompt(“Music”类:”上设定了一个无效的例外;和spinner_ category_forSong.setAdapter(adapter);

请告诉我,我在本法典中犯了什么错误。

最佳回答

从你的例外来看,findViewById(R.id.Spinner_ category_forUpload)回报无效。 我的猜测是,在你的方法电话之前,你打上了“条码”栏。

从法典抽样来看,你的班级结构并不明确。 在<代码>onCreate()中是否有条线?

问题回答

在设计适应器后尝试:spinner_ category_forSong.setAdapter(adapter); before spinner_ category_forSong.setPrompt(“Music category :”);





相关问题
Spring Properties File

Hi have this j2ee web application developed using spring framework. I have a problem with rendering mnessages in nihongo characters from the properties file. I tried converting the file to ascii using ...

Logging a global ID in multiple components

I have a system which contains multiple applications connected together using JMS and Spring Integration. Messages get sent along a chain of applications. [App A] -> [App B] -> [App C] We set a ...

Java Library Size

If I m given two Java Libraries in Jar format, 1 having no bells and whistles, and the other having lots of them that will mostly go unused.... my question is: How will the larger, mostly unused ...

How to get the Array Class for a given Class in Java?

I have a Class variable that holds a certain type and I need to get a variable that holds the corresponding array class. The best I could come up with is this: Class arrayOfFooClass = java.lang....

SQLite , Derby vs file system

I m working on a Java desktop application that reads and writes from/to different files. I think a better solution would be to replace the file system by a SQLite database. How hard is it to migrate ...

热门标签