How to define a pixel independent height in an onDraw() method

自古美人都是妖i 提交于 2019-12-05 23:53:08

问题


I have extended View to build a custom widget. I would like to define the height of the widget with an independ pixel unit. I think it could be done by multiplying the pixel density by the desired height , but i don't know how to do that.

What i have so far (minimized) :

public class Timeline extends View 
{

    @Override
    protected void onDraw(Canvas canvas) {
        //super.onDraw(canvas);
        int canvasWidth = canvas.getWidth();
        this.widgetWith = canvasWidth;


        this.setBackgroundGradientNoVideo();
        RectF rect = new RectF();
        rect.set(0, 0, canvasWidth, 50);
        //Dessin d'un rectangle de fond
        canvas.drawRoundRect(rect, 10, 10, this.paint);

    }

    @Override
    protected void onMeasure(int widthMeasureSpec, int heightMeasureSpec) {
        // TODO Auto-generated method stub
        //super.onMeasure(widthMeasureSpec, 50);
        this.setMeasuredDimension(widthMeasureSpec, 50);
        this.widgetWith = MeasureSpec.getSize(widthMeasureSpec);
    }
}

So i would like to change the lines

this.setMeasuredDimension(widthMeasureSpec, 50);

and

rect.set(0, 0, canvasWidth, 50);

To something pixel independent.

Thanks


回答1:


multiply your pixel values by getResources().getDisplayMetrics().density to make pixels density-independent. If you draw text, you might want to use scaledDensity instead.

density = 1 on mdpi, 1.5 on hdpi, and 0.75 on ldpi i believe.

To complete the answer, some source code:

Either use the following when dealing with views or images

int px = getResources().getDisplayMetrics().density * dp;  

Or, when dealing with text:

int px = getResources().getDisplayMetrics().scaledDensity * sp;



回答2:


To get px values from dp values, calculate

int px = getResources().getDisplayMetrics().density * dp;

I recommend to place a static method somewhere which takes the dp value as parameter in order to do this with less code. E.g. I created a class "ResolutionHelper" which is initialized with the correct density value on app start and which has a static method "dipToPx(int dip) that can then used from anywhere.



来源:https://stackoverflow.com/questions/7028433/how-to-define-a-pixel-independent-height-in-an-ondraw-method

易学教程内所有资源均来自网络或用户发布的内容,如有违反法律规定的内容欢迎反馈
该文章没有解决你所遇到的问题?点击提问,说说你的问题,让更多的人一起探讨吧!