获取相对于其父级的对话框中的视图位置

Posted

tags:

篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了获取相对于其父级的对话框中的视图位置相关的知识,希望对你有一定的参考价值。

我想要做的是,从按钮边缘到屏幕上的一点画一条线......

我正在使用一个对话框片段...我尝试的所有函数总是返回0点...

我试过以下:

@Override
protected Dialog createDialog(Bundle savedInstanceState, FragmentActivity activity)
{
    Dialog d = builder.create();

    View v = LayoutInflater.from(activity).inflate(R.layout.dialog, null);
    builder.setView(v);

    // custom view by my which draws simple lines between points...
    LineDrawView ldv = new LineDrawView(getActivity());
    ldv.setLayoutParams(new LayoutParams(LayoutParams.MATCH_PARENT, LayoutParams.MATCH_PARENT));

    ((RelativeLayout)v).addView(ldv);
    Dialog d = builder.create();

    button = ((Button) v.findViewById(R.id.button));
    int[] pos = new int[2];
    button.getLocationInWindow(pos);

//           tried following ways, all always return p(0, 0)
//           button.getLocationInWindow(pos);
//           Debugger.d("x: " + pos[0] + ", y: " + pos[1], "POS");

//           button.getLocationOnScreen(pos);
//           Debugger.d("x: " + pos[0] + ", y: " + pos[1], "POS");

//           float x = button.getLeft();
//           float y = button.getTop();
//           Debugger.d("x: " + x + ", y: " + y, "POS");


    ldv.addLine(new Point(pos[0], pos[1]), new Point(pos[0] + 30, pos[1]), Color.RED);
    ldv.invalidate();
    return d;
}

并且它总是从p(0,0)到p(0,30)绘制一条线......

如何获取屏幕上按钮的位置或相对于父视图的优先级?我认为,他们的布局尚未完成,所以我必须稍后在某处画出我的线条,但是时间和地点?

答案

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

YourView.getViewTreeObserver().addOnGlobalLayoutListener(new OnGlobalLayoutListener() {
public void onGlobalLayout() {
    getViewTreeObserver().removeGlobalOnLayoutListener(this);

    int[] locations = new int[2];
    YourView.getLocationOnScreen(locations);
    int x = locations[0];
    int y = locations[1];
}
});

以上是关于获取相对于其父级的对话框中的视图位置的主要内容,如果未能解决你的问题,请参考以下文章

position: fixed z-index 是不是相对于其父级的 z-index?

如何在 React Native 中获取 TextInput 相对于其父级或屏幕的光标位置

如何确定 UIBezierPath 相对于其父视图的 arcCenter?

如何在 c# 中使用统一组合网格并获取相对于主父级的点击位置

JavaScript中提供获取HTML元素位置的属性:

获取元素相对于父容器的位置/偏移量?