带有圆角的Android ImageView无法正常工作

时间:2011-06-30 19:03:32

标签: android

我已经定义了文件thumb_rounded.xml并将其放在我的Android应用程序中的res / drawable文件夹中。有了这个文件,我想在我的ImageView中得到圆角,包含新闻拇指,

<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle" >
<corners android:radius="13.0dip" />
</shape>

我将此设置为我的ImageView的背景,但是,我没有得到圆角,图像仍然是一个矩形。有没有人知道怎么做到这一点?我希望获得与此屏幕相同的效果:

B&H first screen

非常感谢

Ť

3 个答案:

答案 0 :(得分:21)

使用它,

@Override
public void onCreate(Bundle mBundle) {
super.onCreate(mBundle);
setContentView(R.layout.main);

ImageView image = (ImageView) findViewById(R.id.img);
Bitmap bitImg = BitmapFactory.decodeResource(getResources(),
    R.drawable.default_profile_image);
image.setImageBitmap(getRoundedCornerImage(bitImg));
}

public static Bitmap getRoundedCornerImage(Bitmap bitmap) {
Bitmap output = Bitmap.createBitmap(bitmap.getWidth(),
    bitmap.getHeight(), Config.ARGB_8888);
Canvas canvas = new Canvas(output);

final int color = 0xff424242;
final Paint paint = new Paint();
final Rect rect = new Rect(0, 0, bitmap.getWidth(), bitmap.getHeight());
final RectF rectF = new RectF(rect);
final float roundPx = 100;

paint.setAntiAlias(true);
canvas.drawARGB(0, 0, 0, 0);
paint.setColor(color);
canvas.drawRoundRect(rectF, roundPx, roundPx, paint);

paint.setXfermode(new PorterDuffXfermode(Mode.SRC_IN));
canvas.drawBitmap(bitmap, rect, rect, paint);

return output;

}

这里,圆形corder依赖于roundPx。

答案 1 :(得分:14)

如果将视图放在ImageView顶部作为蒙版,则可以实现完全圆润的图像效果。

看一下这个例子:

<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    android:layout_width="match_parent"
    android:background="#ffff"
    android:layout_height="match_parent" >

 <ImageView
    android:id="@+id/image1"
    android:layout_width="200dp"
    android:layout_height="200dp"
    android:padding="10dp"
    android:src="@android:color/holo_red_dark"
    />

<View
    android:layout_width="200dp"
    android:layout_height="200dp"
    android:layout_alignLeft="@+id/image1"
    android:layout_alignTop="@+id/image1"
    android:layout_margin="00dp"
    android:background="@drawable/mask" />
</RelativeLayout>

和mask.xml drawable:

<?xml version="1.0" encoding="utf-8"?>
<shape
  xmlns:android="http://schemas.android.com/apk/res/android">
    <corners android:radius="50dp" />    
    <solid android:color="#0000"/>
    <stroke android:color="#ffff" android:width="10dp"/>   
</shape>

两件重要的事情:

  1. 蒙版drawable的笔触宽度应与ImageView的填充
  2. 匹配
  3. 蒙版可绘制的笔触颜色应与背景颜色匹配。
  4. 必须调整遮罩角的半径以与笔划宽度相对应(因此您看不到遮罩后面的图像)。
  5. 该示例生成以下图像: enter image description here

    HTH

答案 2 :(得分:3)

你缺少几个标签。这是一个新样本:

<?xml version="1.0" encoding="utf-8"?>
<shape xmlns:android="http://schemas.android.com/apk/res/android" android:shape="rectangle"> 
    <solid android:color="#ffffff"/>    

    <stroke android:width="3dp"
            android:color="#ff000000"/>

    <padding android:left="1dp"
             android:top="1dp"
             android:right="1dp"
             android:bottom="1dp"/> 

    <corners android:radius="30px"/> 
</shape>

here

另外,您知道RoundRectShape吗?