반응형 cannot resolve constructor1 error: cannot resolve constructor context에서 cannot resolve constructor 오류 해결법 ArrayAdapter spnAdp = new ArrayAdapter(this, R.layout.support_simple_spinner_dropdown_item, lstPhoneNo); this 대신 getApplicationContext() 사용 ArrayAdapter spnAdp = new ArrayAdapter(getApplicationContext(), R.layout.support_simple_spinner_dropdown_item, lstPhoneNo); 이러면, 작동 안될 때가 있음. 그럴 때는 외부 메서드로 변경. 왜 이러는지는 모르겠음. private void spinnerDataSetting(ArrayLis.. 2019. 10. 1. 이전 1 다음 반응형