플랫폼/안드로이드 android

안드로이드 setBackgroundColor 16진수 / rgb로 적용

삐뚤어진 개발자 2020. 2. 17.

16진수 적용 방법

 

Spinner Test = findViewById(R.id.Spinner_test);


Test.setBackgroundColor(Color.parseColor("#313334"));

 

RGB 적용 방법

 

Spinner Test = findViewById(R.id.Spinner_test);


Test.setBackgroundColor(Color.rgb(125,65,23));

 

댓글