Menu_Horizontal

Showing posts with label color converter. Show all posts
Showing posts with label color converter. Show all posts

Thursday, 5 November 2015

Android Color Tool



  • Converting hex string color code to smali color code
  • Converting smali color code to hex string color code
  • Picking a color from a picture
  • Material color colections

Download latest Android Color Tool apk for developers.
AndroidColorTool.1.6.apk (bug fixed on android 6.0)
AndroidColorTool.1.5.apk
AndroidColorTool.1.4-stayos.apk (spesial with Stay OS splash screen) (www.stayosrom.com)
AndroidColorTool.1.4.apk
AndroidColorTool.1.3.apk
AndroidColorTool.1.2.apk

Color Converter
For converting rgb or argb hex string color code to smali color code and visaversa.

As an android developer we usually put a color code on resources and if we need to call from java code we have to (for example) write
int color= getResources().getColor(R.color.name);
and then object.setbackgroundColor(color);

actually we can write like this
int color= -0xaa88ca; //smali color code
and then object.setbackgroundColor(color);

Or some times we have to write like this
int color = Color.parseColor ("#d02c2889");

And again we may write just like this
int color = -0xaa88ca


And as a themmer some times we found smali color code and wee need to know the hex string color code of the smali color code, and this apk will help us.

Picture Color Picker

Picking a color from a picture.
picture color picker with history. The color result and the picture file path is stored in a nice looks list. It will make easy for future usage.

Material Color Collections
A collectios of material color code with preview

Tuesday, 6 October 2015

Color Smali Converter Apk



Color Smali Converter apk is a small tool to convert color string value to hex color smali value.

Feel free to leave a comment for bug report or feature request.

Download
Please use Android Color Tool apk instead
AndroidColorTool.apk is the upate version of smali color apk.
It included some other feature e g picture color picker
Download Android Color Tool apk (06-11-2015)

Version 2.2
ColorSmaliConverter.2.2 apk (07-10-2015)

Version 2.1
ColorSmaliConverter.2.1.apk (worked)

Version 2.0

Version 1.0 (initial release)