Я пытаюсь добавить список в Spinner, но в LogCat всегда получаю исключение, говорящее:
"java.lang.RuntimeException: Unable to start activity ComponentInfo{....}: java.lang.NullPointerException"
В эмуляторе появляется диалоговое окно, в котором говорится, что приложение неожиданно остановилось, и мне нужно принудительно закрыть приложение. Я пробовал разные вещи, но я все еще получаю то же исключение.
Вот код действия:
public class CreateListActivity extends Activity implements OnClickListener{
/** Called when the activity is first created. */
@Override
protected void onCreate(Bundle savedInstanceState)
{
Spinner categorySpinner = (Spinner)findViewById(R.id.category_Spinner);
CategoryAction categoryAction = new CategoryAction(getBaseContext());
ArrayList<ListCategory> categorylist = new ArrayList<ListCategory>();
ArrayList<String> categoryNames = new ArrayList<String>();
//Get all existing categories.
try
{
categorylist = (ArrayList<ListCategory>) categoryAction.getAllCategories();
}
catch(SQLException e)
{
e.printStackTrace();
}
// Add all existing category names. This will be used to add options to the spinner.
for (ListCategory category : categorylist)
{
categoryNames.add(category.getCategoryName());
}
ArrayAdapter<String> adapter = new ArrayAdapter<String>(this,
android.R.layout.simple_spinner_item, categoryNames);
adapter.setDropDownViewResource(android.R.layout.simple_spinner_dropdown_item);
super.onCreate(savedInstanceState);
setContentView(R.layout.createlist);
categorySpinner.setAdapter(adapter);
View addNewListButton = findViewById(R.id.Add_List_button);
addNewListButton.setOnClickListener(this);
}
public void onClick(View v)
{
ListAction listAction = new ListAction(getBaseContext());
EditText listEditText = (EditText)findViewById(R.id.listName);
String newListName = listEditText.getText().toString();
try {
if(!listAction.listExist(newListName)){
listAction.createList(newListName, "To Buy");
}
} catch (SQLException e) {
e.printStackTrace();
}
Intent viewListsIntent = new Intent(this, ItemListActivity.class);
startActivity(viewListsIntent);
}
}