Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
您好,我有一个布局,其中包含 x 个动态创建的按钮。我需要做的是画一条连接第一个和最后一个按钮的线。我怎样才能得到按钮的位置,我怎样才能画线?谢谢!
这是你画线的方式:
canvas.drawLine(startPoint.x, startPoint.y, endPoint.x, endPoint.y, paint);
这是在onDraw方法中对画布对象完成的。
onDraw
以下是更多信息: