如何获取View的大小?
所以我试图让我的 Android 应用程序构建一个图像视图大小的位图。 imageview 的大小根据屏幕的大小而变化,那么如何将大小传递给使位图始终为 imageview 大小的方法呢?
谢谢
So I'm trying to make my android app build a bitmap to the size of an imageview. The imageview's size changes based on the size of the screen, so how could I pass the size to a method that makes a bitmap that is always the size of the imageview?
Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
将您的 imageview 对象传递给创建位图的方法。使用该对象获取高度和宽度。
Pass your imageview object to your method which creates bitmap. Use that object to get height and width.