1
0
mirror of https://github.com/moparisthebest/Yaaic synced 2025-01-07 19:58:10 -05:00

DisplayUtils: Helper class for methods regarding the display of the current device.

This commit is contained in:
Sebastian Kaspari 2012-07-28 11:29:57 +02:00
parent 6f7275563c
commit 9884ef1bff

View File

@ -0,0 +1,60 @@
/*
Yaaic - Yet Another Android IRC Client
Copyright 2009-2012 Sebastian Kaspari
This file is part of Yaaic.
Yaaic is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
Yaaic is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with Yaaic. If not, see <http://www.gnu.org/licenses/>.
*/
package org.yaaic.utils;
import android.content.Context;
/**
* Helper class for methods regarding the display of the current device.
*
* @author Sebastian Kaspari <sebastian@yaaic.org>
*/
public class DisplayUtils
{
private static float density = -1;
/**
* Convert the given density-independent pixels into real pixels for the
* display of the device.
*
* @param dp
* @return
*/
public static int convertToPixels(Context context, int dp) {
float density = getScreenDensity(context);
return (int) (dp * density + 0.5f);
}
/**
* Get the density of the display of the device.
*
* @param context
* @return
*/
public static float getScreenDensity(Context context) {
if (density == -1) {
density = context.getResources().getDisplayMetrics().density;
}
return density;
}
}