0
countryCodeSpinner
は、次のコードスニペットでnull
と表示されます。Spinnerがnullを返す
countryCodeSpinner = (Spinner) findViewById(R.id.spinner_country);
countryCodeSpinner.setOnItemSelectedListener(new AdapterView.OnItemSelectedListener() {
@Override
public void onItemSelected(AdapterView<?> parentView, View selectedItemView, int position, long id) {
selectedCountryCode = (Long) selectedItemView.findViewById(R.id.country_name).getTag();
}
コードはどこにでもありますので、修正してください。コードにコンテキストを追加します。 – iMan
レイアウトにR.id.spinner_countryのリソースがない可能性があります。 正しいレイアウトを選択してください。 – Adnan
@avinash tiwari refere [this](http://stackoverflow.com/help/how-to-ask)befor asking questions – Nikhil