안드로이드 상태바(Status Bar) 색깔 바꾸기


MainActivity.java

1
2
3
4
        //싱태바 색깔 바꾸기
        if(Build.VERSION.SDK_INT >= 21 ){
            getWindow().setStatusBarColor(Color.parseColor("#00B700"));
        }
cs

API21 부터 가능하다


+ Recent posts