我有一个简单的布局:
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent"> <Button android:id="@+id/button1" android:layout_width="wrap_content" android:layout_height="wrap_content" android:text="Button" /> <Button android:layout_width="wrap_content" android:layout_height="wrap_content" android:onClick="animate" android:text="animate" /> </LinearLayout>
在我的活动中,我更改其位置后正在打印按钮:
public class MainActivity extends Activity { @Override protected void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); setContentView(R.layout.activity_main); } public void animate(View view) { printHitRect(); findViewById(R.id.button1).setY(50); printHitRect(); } private void printHitRect() { Rect rect = new Rect(); findViewById(R.id.button1).getHitRect(rect); Log.d(">>button1 hit rect",rect.flattenToString()); } }
预期输出
button1 hit rect: 0 0 116 72
button1 hit rect: 0 50 116 122
实际输出
button1 hit rect: 0 0 116 72
button1 hit rect: -58 14 58 86
有人可以解释这个输出,我做错了什么,还是一个bug?基本上我在我的自定义ViewGroup中使用这个getHitRect()来检测哪个子用户已经触摸过.有没有更好的方式让孩子在一个特定的点,可能是一个像getChildAt(x,y)的功能?
而不是setY(),我已经尝试了setTranslateY().我也使用了NineOldAndroid库以及内置的动画框架.如果我使用findViewById(R.id.button1).animate().y(50)而不是setY(),可以看到相同的行为.
更新:
我结束了使用现在工作的9oldandroid库编写实用程序方法:
private static void getHitRect(View v,Rect rect) { rect.left = (int) com.nineoldandroids.view.ViewHelper.getX(v); rect.top = (int) com.nineoldandroids.view.ViewHelper.getY(v); rect.right = rect.left + v.getWidth(); rect.bottom = rect.top + v.getHeight(); }