Android Canvas drawLine not drawing on MainActivity
问题 I want to draw a line on the Main Activity using Canvas. The problem is, it is not drawing anything. I have the following code: Bitmap bitmap = Bitmap.createBitmap(1920, 1080, Bitmap.Config.ARGB_8888); Canvas canvas = new Canvas(bitmap); Paint paint = new Paint(); paint.setColor(Color.BLACK); paint.setStyle(Paint.Style.FILL_AND_STROKE); paint.setStrokeWidth(10); float left = 20; float top = 20; float right = 50; float bottom = 100; canvas.drawLine(left, top, right, bottom, paint); 回答1: you