Here you can find the source of getDensity(Context context)
Parameter | Description |
---|---|
context | a parameter |
public static float getDensity(Context context)
//package com.java2s; import android.content.Context; public class Main { /**/*w w w. j a va 2s .co m*/ * * @param context * @return */ public static float getDensity(Context context) { return context.getResources().getDisplayMetrics().density; } }