gpt4 book ai didi

android - gethitRect() ,我做错了,这是如何工作的?

转载 作者:太空狗 更新时间:2023-10-29 13:42:36 25 4
gpt4 key购买 nike

我不断得到 top, bottom, left, right = 0。我想我做错了,正确的方法是什么?时间差

onCreate()

    ImageView trash = (ImageView) findViewById(R.id.dropTarget_trash);
trash.setOnTouchListener(this);
Rect trashHit = new Rect();
trash.getHitRect(trashHit);
Log.d(TAG,"Trash left:" + trashHit.left + " right: " + trashHit.right + " top: " + trashHit.top + " bottom: " + trashHit.bottom);

最佳答案

由于命中的 rect 在父坐标空间中,因此父级首先需要对其子级进行布局,这在 onCreate() 期间尚未完成。看看解决方案herepost() 中运行的示例。如果您有自定义 View ,onDraw() 中的 getHitRect() 也会为您提供正确的尺寸。

关于android - gethitRect() ,我做错了,这是如何工作的?,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/3933787/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com