我在一个 android 应用程序中工作,我想ImageView
在我的视图中放置一个特定的位置。为此,我应用了特定代码并成功运行:
ImageView image = (ImageView) findViewById(R.id.imageView1);
Bitmap bMap = BitmapFactory.decodeResource(getResources(), R.drawable.mrng);
Matrix mat = new Matrix();
mat.postRotate(350);
Bitmap bMapRotate = Bitmap.createBitmap(bMap, 0, 0, bMap.getWidth(),bMap.getHeight(), mat, true);
image.setImageBitmap(bMapRotate);
现在我想为这个图像设置一个边框。为此,我制作了一个形状 xml,并将其设置为图像视图的背景。
<?xml version="1.0" encoding="UTF-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android">
<solid android:color="#FFFFFF" />
<stroke android:width="3dp" android:color="#000000" />
</shape>
但是当我给图像视图的背景形状时,它没有给出正确的输出。请帮助我。
我不想要 ImageView 周围的边框,而是旋转图像周围的边框。