
Android高级
文章平均质量分 51
liwy_finder
这个作者很懒,什么都没留下…
展开
-
Android 添加设置自定义字体
把字体文件放到Asset/font目录下Typeface typeFace = Typeface.createFromAsset(mContext.getAssets(), "font/fzktjt.ttf");TextView.setTypeface(typeFace); 如果是设置网页的字体,使用WebView渲染,则需要修改网页代码例如<h...原创 2012-03-15 23:40:37 · 247 阅读 · 0 评论 -
Android Ant打包打入第三方包报错解决方案
在做项目的时候,使用到第三方包,在混淆打包的时候一直报第三方包的warning, 导致最后BUILD FAIL. 部分warn信息 [proguard] Warning: android.support.v4.view.accessibility.AccessibilityManagerCompatIcs$1: can't find superclass or interface and...原创 2012-04-11 16:46:17 · 219 阅读 · 0 评论 -
Android在WebView中获取网页源码
1. 使能javascript: ?1webView.getSettings().setJavaScriptEnabled(true);2. 编写本地接口?12345final class InJavaScriptLocalObj { public void s...原创 2013-05-15 14:03:06 · 232 阅读 · 0 评论