2

在一个项目中,我必须以不同的形状显示个人资料图像和其他图像。我不知道如何创建类似的形状,以及如何在其中显示图像。我也必须将这种类型的形状放在列表视图中。请给我建议。

提前致谢。

4

3 回答 3

1

尝试这样的事情:

profileImageview=[[UIImageView alloc]initWithFrame:CGRectMake(2,10,100,80)];
    UIBezierPath *path = [UIBezierPath new];
    [path moveToPoint:(CGPoint){0, 0}];
    [path addLineToPoint:(CGPoint){100, 0}];
    [path addLineToPoint:(CGPoint){70, 80}];
    [path addLineToPoint:(CGPoint){0, 80}];
    [path addLineToPoint:(CGPoint){0, 0}];

     CAShapeLayer *mask = [CAShapeLayer new];
    mask.frame = profileImageview.bounds;
    mask.path = path.CGPath;

    // Mask the imageView's layer with this shape
    profileImageview.layer.mask = mask;
于 2014-09-05T10:00:07.790 回答
1

我尝试并获得了适用于 Android 的解决方案。我正在分享我所做的一切。

  • 我刚刚创建了一个扩展View类的CustomShape类。
  • 覆盖 onDraw() 方法。
  • 创建了一个 Paint 和 Path 对象。
  • 画线到坐标。
  • 从资源创建位图以显示形状内的图像。
  • 创建了一个 BitmapShader 对象并将其设置为 Paint。
  • 使用 Path 和 Paint 对象绘制画布。
  • 在 XML 中创建布局并添加 CustomeShape。
  • 创建并实例化 CustomShape 对象。

下面是 CustomShape 类的代码:

public class CustomShape extends View {
Bitmap bitmap;
BitmapShader bitmapShader;

public CustomShape(Context context) {
    super(context);
    // TODO Auto-generated constructor stub

}

public CustomShape(Context context, AttributeSet attrs) {
    super(context, attrs);
}

public CustomShape(Context context, AttributeSet attrs, int defStyle) {
    super(context, attrs, defStyle);
}


@Override
protected void onDraw(Canvas canvas) {
    // TODO Auto-generated method stub
    super.onDraw(canvas);

    Paint p = new Paint(Paint.ANTI_ALIAS_FLAG | Paint.FILTER_BITMAP_FLAG);
    Path pth = new Path();
    pth.moveTo(0, 0);

    pth.lineTo(100, 0);
    pth.lineTo(70, 100);
    pth.lineTo(0, 100);

    Bitmap bitmap = BitmapFactory.decodeResource(getResources(),
            R.drawable.ppp);
    bitmapShader = new BitmapShader(bitmap, Shader.TileMode.CLAMP,
            Shader.TileMode.REPEAT);
    p.setShader(bitmapShader);
    canvas.drawPath(pth, p);
}

这是 MainActivity.java 的代码

public class MainActivity extends Activity {

CustomShape customShape;

@Override
protected void onCreate(Bundle savedInstanceState) {
    // TODO Auto-generated method stub
    super.onCreate(savedInstanceState);
    setContentView(R.layout.layout_main);

    customShape = (CustomShape) findViewById(R.id.customeShape);

    }

}

这是布局

 <com.example.btndemo.CustomShape
      android:id="@+id/customeShape"
      android:layout_width="wrap_content"
      android:layout_height="wrap_content" />
于 2014-09-05T12:13:02.133 回答
0

根据需要使用贝塞尔路径使用 bazie rpaths 并创建所需的形状图层并将其作为子图层添加到图像视图中。

例如圆形 imageView 代码如下:

     UIBezierPath *path = [UIBezierPath bezierPathWithArcCenter:CGPointMake(self.width/2, self.height/2) radius:MIN(self.width, self.height)/2 startAngle:0.0f endAngle:2 * M_PI clockwise:YES]; 
     CAShapeLayer *maskCircularShapeLayer = [CAShapeLayer layer]; maskCircularShapeLayer.path = path.CGPath;
     [self.layer addSublayer:maskCircularShapeLayer];
于 2014-09-04T10:44:05.033 回答