码迷,mamicode.com
首页 > 移动开发 > 详细

Arcgis for Android解决中文字体乱码的问题

时间:2014-12-29 16:47:37      阅读:176      评论:0      收藏:0      [点我收藏+]

标签:android   arcgis   乱码   

首先,在此感谢Arcgis for Android群里的一位成员,大家可以加进来QQ群号:337469080。


不论是Arcgis for Android的哪个版本,都没无法解决中文乱码的问题,这个与Android中自带的字体库有关,可以参考http://mobile.51cto.com/android-265238.htm这篇文章。


所以,要在Arcgis for Android中显示中文,需要对字体进行设置,如下:

			TextSymbol ts = new TextSymbol(25, addr, Color.RED);
			ts.setFontFamily("DroidSansFallback.ttf");  
			ts.setOffsetX(0);
			ts.setOffsetY(-30);
			Graphic gText = new Graphic(mapPoint,ts);
			gLayerGps.addGraphic(gText);

这样,就能解决中文乱码问题,完成后 显示为:

技术分享

如有疑问请联系:

QQ:1004740957

Email:niujp08@qq.com

Arcgis for Android解决中文字体乱码的问题

标签:android   arcgis   乱码   

原文地址:http://blog.csdn.net/gisshixisheng/article/details/42239837

(0)
(0)
   
举报
评论 一句话评论(0
登录后才能评论!
© 2014 mamicode.com 版权所有  联系我们:gaon5@hotmail.com
迷上了代码!