博客
关于我
强烈建议你试试无所不能的chatGPT,快点击我
绘制bitmap 全屏 安卓获取 屏幕大小
阅读量:6180 次
发布时间:2019-06-21

本文共 571 字,大约阅读时间需要 1 分钟。

韩梦飞沙  韩亚飞  313134555@qq.com  yue31313  han_meng_fei_sha

绘制bitmap 全屏

  1. Rectf rectF = new RectF(0, 0, w, h);   //w和h分别是屏幕的宽和高,也就是你想让图片显示的宽和高  
  2. canvas.drawBitmap(bitmap, null, rectF, null);  

 

安卓获取 屏幕大小

1、WindowManager wm = (WindowManager) getContext()

                    
.getSystemService(Context.WINDOW_SERVICE);
 
     
int 
width = wm.getDefaultDisplay().getWidth();
     
int 
height = wm.getDefaultDisplay().getHeight();
 
2
、WindowManager wm =
this
.getWindowManager();
 
     
int 
width = wm.getDefaultDisplay().getWidth();
     
int 
height = wm.getDefaultDisplay().getHeight();

 

转载于:https://www.cnblogs.com/yue31313/p/7440434.html

你可能感兴趣的文章
一不小心把win10的秘钥卸载了解决方法
查看>>
SilverLight之向后台请求数据-WebClient
查看>>
HDU Problem 1260 Tickets 【dp】
查看>>
STL map容器常用API
查看>>
队列的顺序存储---顺序队列
查看>>
Delphi 读取 c# webservice XML的base64编码图片字符串转化图片并显示
查看>>
第三天
查看>>
connector for python
查看>>
等价类划分的应用
查看>>
Web Service(下)
查看>>
trigger()
查看>>
nvm 怎么安装 ?
查看>>
Java VM里的magic
查看>>
[Node.js]Domain模块
查看>>
Linux操作系统文档
查看>>
利用Tensorflow训练自定义数据
查看>>
c++官方文档-枚举-联合体-结构体-typedef-using
查看>>
[题解]UVA11029 Leading and Trailing
查看>>
利用vue-gird-layout 制作可定制桌面 (一)
查看>>
校园社交网站app
查看>>