Skip to main content

status bar color 바꾸기

Image
캐시백 서비스가 보이는 화면에서 상단의 status bar(빨간색 네모쳐진 부분) 색상을 customize하고 싶은 경우, 앱의 themes.xmlmomentCashbackStatusBarColor style attribute를 추가해주세요.
// themes.xml
<resources>
		<style name="AppTheme" parent="...">
				...
        <item name="momentCashbackStatusBarColor">@color/custom_color</item>
    </style>
</resources>
별도의 style attribute를 지정하지 않는 경우, 앱의 status bar color와 같은 색의 status bar color를 사용하게 됩니다.