How can i take screenshot of rotated TextView with emoji?
问题 I'm trying to make a screenshot of the rotated TextView which contain emoji icons. But on resulting bitmap i see that emoji are not rotated! Why is this happening? How can i make a screenshot with rotated emoji ? What i expect: And this is what i get: I'm using this method to get screenshot of view: layout.setDrawingCacheEnabled(true); layout.buildDrawingCache(); Bitmap bitmap = null; if (layout.getDrawingCache() != null) bitmap = layout.getDrawingCache().copy(Bitmap.Config.ARGB_8888, false);