总结 symbian 显示中文
2010-05-31 19:47:00 来源:WEB开发网核心提示:gc.UseFont(myFont);gc.SetPenColor(KRgbYellow);TBuf8<20> title8;TBuf<20> title16;TBuf8<20> msg8;TBuf<20> msg16;title8.Format(_L8("友情
gc.UseFont(myFont);
gc.SetPenColor(KRgbYellow);
TBuf8<20> title8;
TBuf<20> title16;
TBuf8<20> msg8;
TBuf<20> msg16;
title8.Format(_L8("友情提示"));
ConvGbk2Uni(title8, title16);
msg8.Format(_L8(" 谢谢您的使用"));
ConvGbk2Uni(msg8, msg16);
gc.DrawText(title16, TPoint(50, 100));
gc.DrawText(msg16, TPoint(50, 50));
gc.DiscardFont();
}
开始始终显示不出中文,出现的只是好几个小方框,检查了好几遍代码还是没发现有什么错误,后来发现问题出在了 Symbian 的 sdk 中,默认状态下 Symbian 用的语言是英文,要想显示中文要换成 Chinese。
方法:开始—>程序—>S60 developer Tools —>3rd edition SDK —>1.0 —> languages —>Change to Chinese 这样就可以了。
希望能与大家多交流学习,请多指教!
更多精彩
赞助商链接