res/drawable/schoolboard.png
の画像に円を描こうとしています。イメージはアクティビティの背景を塗りつぶします。次のように動作しません:既存の画像に円を描く
Bitmap bitmap = BitmapFactory.decodeResource(getResources(), R.drawable.schoolboard);
Paint paint = new Paint();
paint.setAntiAlias(true);
paint.setColor(Color.BLUE);
Canvas canvas = new Canvas(bitmap);
canvas.drawCircle(60, 50, 25, paint);
ImageView imageView = (ImageView)findViewById(R.drawable.schoolboard);
imageView.setAdjustViewBounds(true);
imageView.setImageBitmap(bitmap);
すべてのヘルプが高く評価されます。ありがとう。
お互いにありがとう! RelativeLayoutでスクールボードイメージが 'android:background =" @ drawable/schoolboard "と定義される前に、xmlファイルをchanしてイメージビューを作成しました。今それは動作します! – Kfir