Android Dip to Pixel Convert convertToPixel(Context context, float dp)

Here you can find the source of convertToPixel(Context context, float dp)

Description

convert To Pixel

License

Apache License

Declaration

public static float convertToPixel(Context context, float dp) 

Method Source Code

//package com.java2s;
/*//from  ww w.ja v  a 2s.  co m
 * Copyright (C) 2013 Daniel Jeon
 * 
 * Licensed to the Apache Software Foundation (ASF) under one
 * or more contributor license agreements.  See the NOTICE file
 * distributed with this work for additional information
 * regarding copyright ownership.  The ASF licenses this file
 * to you 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;
import android.util.TypedValue;

public class Main {
    public static float convertToPixel(Context context, float dp) {
        return TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP, dp,
                context.getResources().getDisplayMetrics());
    }
}

Related

  1. dpToPx(Context ctx, int dp)
  2. formatDipToPx(Context context, float dip)
  3. sp2px(Context context, float spValue)
  4. sp2px(Context context, float spValue)
  5. spToPx(Context context, int spValue)
  6. getPixelFromDp(float dp, Context context)
  7. convertDptoPx(Context context, int dp)
  8. dip2px(Context context, int dip)
  9. dipValue(Context context, int dip)