728x90
반응형
// 스피너 설정
public void setAccountModeSpinner(){
Spinner accountMode = (Spinner)findViewById(R.id.accountMode);
ArrayAdapter yearAdapter = ArrayAdapter.createFromResource(this, R.array.accountMode, android.R.layout.simple_spinner_item);
accountMode.setAdapter(yearAdapter);
}
R.array.accountMode 는 values에서 만든 xml
728x90
반응형
'Android' 카테고리의 다른 글
안드로이드 진동 (0) | 2018.05.21 |
---|---|
안드로이드 jar 파일 추가하기 (0) | 2018.05.21 |
안드로이드 http 통신 (0) | 2018.05.17 |
editText 자동 포커스, 키보드 제어 (0) | 2018.05.16 |
프래그먼트 뷰페이저 참조 유튜브 경로 (0) | 2018.05.14 |