0

我正在使用 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());

问题是' fromARGB(int argb) '函数回收了一个int值,所以我试图用“ 0x ”替换“ # ”,但它不起作用。

谁可以帮我这个事 ?我将非常感激。

4

2 回答 2

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")));
于 2015-04-15T11:07:08.177 回答
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));
于 2015-05-18T15:33:52.933 回答