Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
我可以在 android 上使用带有显示独立像素的 DrawBitmap 吗?
如果没有,是否有合适的替代方案?
谢谢。
您是否正在寻找如何将像素更改为倾角?那么您可以使用以下代码
int pixel = 120; final float scale = getResources().getDisplayMetrics().density; int dip = (int) (pixel* scale + 0.5f);
你可以用这个蘸酱,它会是