Warning: file_get_contents(/data/phpspider/zhask/data//catemap/8/xcode/7.json): failed to open stream: No such file or directory in /data/phpspider/zhask/libs/function.php on line 167

Warning: Invalid argument supplied for foreach() in /data/phpspider/zhask/libs/tag.function.php on line 1116

Notice: Undefined index: in /data/phpspider/zhask/libs/function.php on line 180

Warning: array_chunk() expects parameter 1 to be array, null given in /data/phpspider/zhask/libs/function.php on line 181
Android 如何创建可以显示图像的自定义形状?_Android_Android Layout_Ios7_Android Shape - Fatal编程技术网

Android 如何创建可以显示图像的自定义形状?

Android 如何创建可以显示图像的自定义形状?,android,android-layout,ios7,android-shape,Android,Android Layout,Ios7,Android Shape,在一个项目中,我必须以不同的方式显示个人资料图像和其他图像。我不知道如何创建这样的形状,以及如何在其中显示图像。我必须把这种类型的形状在列表视图中也。请推荐我 提前谢谢 根据需要使用bezier路径,使用bazie rpaths创建所需的形状层,并将其作为子层添加到图像视图中 例如,圆形imageView代码如下: UIBezierPath *path = [UIBezierPath bezierPathWithArcCenter:CGPointMake(self.width/2, s

在一个项目中,我必须以不同的方式显示个人资料图像和其他图像。我不知道如何创建这样的形状,以及如何在其中显示图像。我必须把这种类型的形状在列表视图中也。请推荐我


提前谢谢

根据需要使用bezier路径,使用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];

试试这样:

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;

我尝试并得到了Android的解决方案。我在分享我所做的一切

  • 我刚刚创建了一个类CustomShape,它扩展了视图
  • 重写onDraw()方法
  • 创建了绘制和路径对象
  • 在坐标上画线
  • 从资源创建位图以显示形状内部的图像
  • 创建BitmapShader对象并将其设置为“绘制”
  • 使用路径和绘制对象绘制画布
  • 用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" />

我找到了iOS的解决方案,请告诉我android的情况。