Android Dip to Pixel Convert dip2px(Context context, float dipValue)

Here you can find the source of dip2px(Context context, float dipValue)

Description

dippx

License

Apache License

Declaration

public static int dip2px(Context context, float dipValue) 

Method Source Code

//package com.java2s;
/*/*ww  w. j  a  va  2s .  c om*/
 * Copyright (C) 2013 www.418log.org
 * 
 * Licensed under the Apache License, Version 2.0 (the "License");
 * you may not use this file except in compliance with the License.
 * You may obtain a copy of the License at
 *
 *     http://www.apache.org/licenses/LICENSE-2.0
 *
 * Unless required by applicable law or agreed to in writing, software
 * distributed under the License is distributed on an "AS IS" BASIS,
 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
 * See the License for the specific language governing permissions and
 * limitations under the License.
 */

import android.content.Context;

public class Main {

    public static int dip2px(Context context, float dipValue) {
        final float scale = context.getResources().getDisplayMetrics().density;
        return (int) (dipValue * scale + 0.5f);
    }
}

Related

  1. convertDptoPx(Context context, int dp)
  2. dip2px(Context context, int dip)
  3. dipValue(Context context, int dip)
  4. dip2pixel(Context context, float n)
  5. dip2px(Context context, float dipValue)
  6. dip2px(Context context, float dpValue)
  7. dip2px(Context context, float dpValue)
  8. dipToPixel(int dip)
  9. dipsToPixels(Context aContext, int aDip)