2

我试图在 GridLayout 中获取图像视图的 x/y,但我的日志一直显示X & Y: 0 0任何想法?

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:id="@+id/root" >

    ...

    <GridLayout
        android:id="@+id/gridLayout1"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:columnCount="3"
        android:rowCount="5" >

        ...

        <ImageView
            android:id="@+id/fivetwo"
            android:layout_width="75dp"
            android:layout_height="75dp"
            android:contentDescription="@string/gameboard"
            android:gravity="center"
            android:src="@drawable/tile" 
            android:layout_columnSpan="1"
            android:layout_rowSpan="1"  />

继承人的Java:

protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_level);
....
ImageView temp = (ImageView) findViewById(R.id.fivetwo);
            int originalPos[] = new int[2];
            temp.getLocationOnScreen( originalPos );
            Log.i(TAG, "X & Y: " + originalPos[0] + " " + originalPos[1]);

...
4

2 回答 2

8

请记住:如果组件尚未绘制getX(),则getY()返回0 (在 onCreate(){} 中) 。


view准备好后立即找出 a 的位置:

在布局中添加一个树观察者。这应该返回正确的位置。在子视图的布局完成之前调用 onCreate。所以宽度和高度还没有计算出来。获取高度和宽度。把它放在 onCreate 方法上

final ImageView temp = (ImageView) findViewById(R.id.fivetwo);
ViewTreeObserver vto = temp.getViewTreeObserver(); 
vto.addOnGlobalLayoutListener(new OnGlobalLayoutListener() { 
    @Override 
    public void onGlobalLayout() { 
        temp.getViewTreeObserver().removeGlobalOnLayoutListener(this); 
        int x  = temp.getX();
        int y = temp.getY();
        Log.v(TAG, String.format("X:%d Y:%d",x,y);
    } 
});
于 2013-10-22T19:04:40.803 回答
5

当布局放置子视图时,您需要等待回调。您使用的代码返回 0,因为位置是在放置布局之前返回的。使用此代码:

temp.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
    @Override
    public void onGlobalLayout() {
        getViewTreeObserver().removeGlobalOnLayoutListener(this);

        int[] locations = new int[2];
        temp.getLocationOnScreen(locations);
        int x = locations[0];
        int y = locations[1];
    }
});
于 2013-10-22T19:05:08.247 回答