Translate

[Android][Chrome] Lollipop 에서 브라우저 주소창에 색상넣기



Android Lollipop 이 나오며 브라우저에 새로운 기능이 추가되었다.
Chrome v39 부터 지원이 된다고한다.


Android 4.4.2 사용중인 내 LG G2 단말에서는 지원이 되지 않으며
다른 Lollipop 단말기에서 확인해보니 아래와 같이 보여지는 것을 확인했다.



URL접속 시 다음과 같다.


작업관리자 확인 시 브라우저 탭 중에서 해당 탭만 색상이 나타나는 것을 볼 수 있다.





위와같이 헤더와 상태바에 색상을 입히는 방법은 다음과 같다.


<html>
  <head>
    <meta name="theme-color" content="#3F51B5">
    <meta charset="utf-8" />
    <title>TEST</title>
  </head>
  <body>

test page
  </body>
</html>


참조: http://www.androidpolice.com/2014/11/10/chrome-v39-on-lollipop-supports-custom-multitasking-headerstatus-bar-colors-with-a-simple-html-tag/

댓글