我正在使用Momentics IDE(原生SDK)开发BlackBerry 10移动应用程序。
我想要的是使用 TextStyleDefinition 类在c ++中设置带有十六进制值的标签颜色,如下所示:
Label* titleLabel = container->findChild<Label*>("titleLabelObj");
TextStyleDefinition* TSD;
TSD->setColor(Color::fromARGB("#F01E21"));
titleLabel->textStyle()->setBase(TSD()->style());
问题在于&#39; fromARGB(int argb) &#39;功能回收 int 值,所以我试图替换&#34; #&#34;通过&#34; 0x &#34;但它没有用。
任何人都能帮助我吗?我将非常感谢。
答案 0 :(得分:1)
Color :: fromARGB()需要一个整数,而不是字符串......
试试:
#include <cstdlib>
#include <iostream>
using namespace std;
int hexToInt(string s)
{
char * p;
if (s[0]=='#') s.replace(0,1,"");
return (int)strtol(s.c_str(), &p, 16);
}
然后
m_TSD->setColor(Color::fromARGB(hexToInt("#F01E21")));
答案 1 :(得分:0)
实际上它很简单,你只需要精确的alpha;
// Let's take for example the hex color below :
QString color = "#F01E21"
// We need to convert string to int after we replace the "#" with "0x"
bool ok;
int stringColorToInt = color.replace("#", "0xFF").toUInt(&ok, 16) // The 'FF' is alpha
// We set the color
TSD->setColor(Color::fromARGB(stringColorToInt));