尝试用Canvas 的drawText绘字符串的时候


尝试用Canvas 的drawText绘字符串的时候, 老是有毛刺。特别是大字体,毛刺很明显。看起来很难看。 问: 如何消除这些毛刺? 或者如何绘制出平滑的字体 。 就像一般listview或者textview中的效果就行。那些小说阅读软件,上的字体肯定是平滑过的,很漂亮。 不知道他们怎么弄得。 

解决方案 »

  1. canvas.drawText之前先设置paint的抗锯齿属性
    paint.setAntiAlias(true); // 消除锯齿  

    paint.setFlags(Paint.ANTI_ALIAS_FLAG); // 消除锯齿 


    ---------------------------------------------------------------------

       int colorResId = getColorResByType(context, work.getFileCategory(), work.getFileType());
            fileExtFieldLayout.setBackgroundColor(context.getResources().getColor(colorResId));

你可能感兴趣的:(android)