Tag Archives: Android

Android中Vector Drawable发虚的解决方法

具体过程可以参考:《为毛矢量图图标还发虚?》

这里只贴结论:

  1. 设置 ImageView 的 ScaleType 为 ScaleType.FIT_XY 即可。
  2. 或者 把 height 和 width 设置为一个较大的值,避免图标放大发虚

<vector
android:height="120dp"
android:viewportHeight="75.0"
android:viewportWidth="75.0"
andro[......]

继续阅读

[转]三星GS4(Android 4.3)上webview crash问题

转载自:http://faywong.github.io/posts/2015-01-15-03.html

最近发现客户端中android4.3上GS4手机上的WebApp应用特别容易crash。分析了源代码之后发现,在ActivityThread中回收内存时会调用EGLImpl里边去,回收RenderThread,进而调用到计算CPU FPS的逻辑,进而crash:
java.lang.Error: signal 11 (Address not mapped to object) at[......]

继续阅读