10-05-2012 12:56 AM
As a black ground, the text on the StandardListItem become very hard to read.
Does anyone know how to change the font color of StandardListItem.
Thank you.
Solved! Go to Solution.
10-05-2012 01:37 AM
Frankly, I'm getting the feeling that StandardListItem exists only for the purpose of simplifying sample apps. Its basically unconfigurable, and they don't appear to have added anything to it with each Cascades API update.
What I do wish RIM would do, however, is publish the source code to a custom UI component that behaves exactly like StandardListItem. With such a sample, we could extend it however we want, yet still retain all of its intended behavior. (such as highlight-on-touch, etc.)
10-05-2012 02:15 AM
you can just format your text by wrapping it in html tags <html><span style="font-color: #CCCCCC;">Your text here</span></html>
10-05-2012 12:45 PM - edited 10-05-2012 12:46 PM
I tested your solution, but it cannot work. Do you have example codes can share? Very appreciate!
10-05-2012 02:46 PM
Theres no code really, you just need the html formatted text, except my color statement in the text had an error, its just color: and not font-color:
<html><span style="color: #CCCCCC;">Your text here</span></html>
10-27-2012 01:58 AM
great, it worked ![]()