2

我正在开发一个将动态插入矩形的 Android 应用程序。发生的问题是我不知道如何插入具有特定 XY 坐标的矩形。

这是到目前为止的代码:

public class MainActivity extends Activity {

DrawRectangle drawView;
ImageView DrawingImage;
@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    ImageView DrawingImage = (ImageView) this.findViewById(R.id.image2);

    Bitmap bitmap2 = Bitmap.createBitmap((int) getWindowManager()
        .getDefaultDisplay().getWidth(), (int) getWindowManager()
        .getDefaultDisplay().getHeight(), Bitmap.Config.ARGB_8888);

    Canvas canvas = new Canvas(bitmap2);
    DrawingImage.setImageBitmap(bitmap2);

    // Draw Rectangle

    Paint paint = new Paint();
    paint.setColor(Color.GREEN);
    paint.setStyle(Paint.Style.FILL);

    int left = 25;
    int top = 25;
    int right = 60;
    int bottom = 50;

    Point insertRec=new Point(0, 120);
    Rect rec = new Rect(insertRec.x, insertRec.y, insertRec.x+30, insertRec.y+25);
    canvas.drawRect(rec,paint);
    ImageView image = (ImageView) findViewById(R.id.image);
    Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.test);
    image.setImageBitmap(bitmap);
}

XML:

<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
xmlns:tools="http://schemas.android.com/tools"
android:layout_width="match_parent"
android:layout_height="match_parent">

    <ImageView
        android:id="@+id/image"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:layout_marginTop="50dp"
        android:src="@drawable/test" />

    <ImageView
        android:id="@+id/image2"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true"
        android:layout_marginTop="50dp" />

</FrameLayout>

我试图放置一个新变量Point myPoint=new Point(x,y);,但我仍然无法将它插入到我想要的位置,因为插入点位于 (-60,120) 并且当我创建该点时它并没有插入那里。

有什么建议吗?

先感谢您!

编辑

当我这样做时,矩形不会出现在 (0,120) 处,因为它在屏幕内部 3-4 厘米。

最好的问候, 迪米塔尔·格奥尔基耶夫

4

1 回答 1

0

使用此方法在 X 和 Y 坐标处使用宽度和高度参数绘制矩形

fun drawRectangle(left: Int, top: Int, right: Int, bottom: Int, canvas: Canvas, paint: Paint?) {
        var right = right
        var bottom = bottom
        right = left + right // width is the distance from left to right
        bottom = top + bottom // height is the distance from top to bottom
        canvas.drawRect(left.toFloat(), top.toFloat(), right.toFloat(), bottom.toFloat(), paint!!)
    }

用法

//在x坐标为posX和y坐标为posY上绘制矩形

        drawRectangle(posX, posY, 60, 40, canvas, paint)
于 2021-11-09T10:06:53.823 回答