Created
November 10, 2018 08:19
-
-
Save mahdi-malv/8e8afe869717cafce643002356d7df55 to your computer and use it in GitHub Desktop.
change dp or sp to px in android
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
public static float dpOrSpToPx(final Context context, final float dpOrSpValue) { | |
return dpOrSpValue * context.getResources().getDisplayMetrics().density; | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment