I know that you can get a normal text like this:
我知道你可以得到这样的普通文字:
EditText input = (EditText) findViewById(R.id.input);
String value = input.getText().toString();
but now I need a to an input like this: 0xFFFFFF (a Hex-Color), an Integer... But value is only a String and I don't know how to convert it... I'm using view.setBackgroundColor(color);
但现在我需要一个像这样的输入:0xFFFFFF(一个Hex-Color),一个Integer ......但是值只是一个String而且我不知道如何转换它...我正在使用view.setBackgroundColor (颜色);
Thanks a lot!
非常感谢!
1 个解决方案
#1
0
you can use the Color.parseColor(colorString);
function to convert your string to a color int
你可以使用Color.parseColor(colorString);将字符串转换为颜色int的函数
#1
0
you can use the Color.parseColor(colorString);
function to convert your string to a color int
你可以使用Color.parseColor(colorString);将字符串转换为颜色int的函数