0

我在数据库中有 rgb 颜色代码与百分比值不同,我通过 json 解析器传递表格,我的问题是如何转换rgbHTML颜色代码。

我的数据库中的示例255 255 255 255

如何在我的程序中进行转换以及如何在R.id.l7.

ListAdapter adapter = new SimpleAdapter(this, contactList,
            R.layout.list_item,
            new String[] {  TAG_GRPNAME, TAG_QNT, TAG_BUDGET, TAG_STOCK, TAG_DIFF, TAG_DIFF_P, },
            new int[] {
                     R.id.l2, R.id.l3, R.id.l4, R.id.l5, R.id.l6, R.id.l7});


            setListAdapter(adapter);
4

1 回答 1

0

要在其 html 表示中转换 ARGB 颜色,您可以使用:

int color = Color.argb(255, 255, 255, 255);
String htmlColor = String.format("#%X", color);

如果你想在它的 int 表示中返回颜色,你可以使用:

int color = Color.parse(htmlColor);
于 2013-07-10T07:52:22.893 回答