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);
このディップを使用できます。