Draw Rectangle which change size w.r.t different a

2019-06-11 11:59发布

I want to draw a rectangle using canvas which change its size with different screen size.
That means it increase of decrease its size with screen ratio.
I use the following code:

float scale = getContext().getResources().getDisplayMetrics().density;
canvas.drawRect(leftX-20*scale, leftY-20*scale, rightX+20*scale, rightY, mPaint); 

But it does not change its size in different screen.
What can I do?

2条回答
混吃等死
2楼-- · 2019-06-11 12:14

The problem is in getContext().getResources().getDisplayMetrics().density; it wil give you same dencity always better use the following approach

To get density Use the following code

DisplayMetrics metrics = new DisplayMetrics();    
getWindowManager().getDefaultDisplay().getMetrics(metrics);    
int screenDensity = metrics.densityDpi;

so your code will be

DisplayMetrics metrics = new DisplayMetrics();    
    getWindowManager().getDefaultDisplay().getMetrics(metrics);    
    float scale = metrics.densityDpi;

canvas.drawRect(leftX-20*scale, leftY-20*scale, rightX+20*scale, rightY, mPaint); 
查看更多
The star\"
3楼-- · 2019-06-11 12:15

Or you can try

float scale= Resources.getSystem().getDisplayMetrics().densityDpi;

This is implemented in my Android Game "MaracasRunner".

查看更多
登录 后发表回答