Skip to content

Instantly share code, notes, and snippets.

@mochico
Last active November 17, 2015 01:10
Show Gist options
  • Star 0 You must be signed in to star a gist
  • Fork 0 You must be signed in to fork a gist
  • Save mochico/45534a6ba001c3b29b0e to your computer and use it in GitHub Desktop.
Save mochico/45534a6ba001c3b29b0e to your computer and use it in GitHub Desktop.
Androidのcolor.xmlから16進数カラーコードを取得する
Integer.toHexString(getResources().getColor(R.color.highlight_color) & 0x00ffffff);

htmlでカラー置き換えなどの時はalphaが効かないのでbit演算の論理積で必要な桁だけ取得する

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment