我想在RoundedImageView中从毕加索库中加载图像

我正在从https://github.com/vinc3m1/RoundedImageView引用

我真的无法理解如何用于RoundedImageView

你能告诉我如何使用..我无法理解..使用方法

当我设置布局

<com.makeramen.RoundedImageView
        xmlns:app="http://schemas.android.com/apk/res-auto"
        android:id="@+id/imageView1"
        android:src="@drawable/photo1"
        android:scaleType="centerCrop"
        app:corner_radius="30dip"
        app:border_width="2dip"
        app:border_color="#333333"
        app:mutate_background="true"
        app:oval="true" />


而不是ImageView ...给出错误...

我从这里下载roundedImageview的Java.doc.jar
http://search.maven.org/#search%7Cgav%7C1%7Cg%3A%22com.makeramen%22%20AND%20a%3A%22roundedimageview%22

并添加到libs文件夹并构建路径

添加后...未找到资源

更新

//tv_gender.setText(Gender);
          iv = (ImageView)rootView.findViewById(R.id.imageView1);
        tv_intrseted.setText(IntrestedIn);
    //  Button logout=(Button)rootView.findViewById(R.id.logout);
        RoundedImageView iv = new RoundedImageView(context);
        iv.setScaleType(ScaleType.CENTER_CROP);
        iv.setCornerRadius(10);
        iv.setBorderWidth(2);
        iv.setBorderColor(Color.DKGRAY);
        iv.setMutateBackground(true);
        iv.setImageDrawable(drawable);
        iv.setBackground(backgroundDrawable);
        iv.setOval(true);


如果我使用“赞”这样的错误..无法解决RoundedImageView

最佳答案

尝试使用可用的库尝试使用
https://github.com/Pkmmte/CircularImageView

android中的圆形ImageView.First尝试创建一个基本的图像。

07-26 09:30