Android Canvas: 创建 RoundRectShape 对象

Android Canvas: Create RoundRectShape Object

我为矩形创建了一个 class,因为它是我应用程序中的一个对象。但是现在我想要圆角。下面你可以看到它是一个简单的框架 class 来创建我想要的具有相同属性的矩形。

public class customDrawable extends ShapeDrawable {

    public void setCustomDrawableAttributes(ShapeDrawable shapeDrawable){
       int x = 0;
       int y = 0;
       int width = 100;
       int height = 100;
       shapeDrawable.setBounds(x, y-height, x + width,y+height );
   }

   public ShapeDrawable createShape(){
       return new ShapeDrawable(new RectShape());
   }

}

更新:如果没有这种方法,我将无法绘制任何东西,因为没有尺寸。它只绘制通常的矩形。 (更改为不显示应用特定方法的整数值)

public void setDrawableAttributes(ShapeDrawable shapeDrawable){
   int x = 0;
   int y = 500
   int width = 200
   int height = 300
   shapeDrawable.setBounds(x, y-height, x + width,y+height );

}

根据我的研究,我发现我不能简单地添加圆角,而是必须创建一个 RoundRectShape shapeDrawable。我使用此 RoundRectShape 创建圆角矩形的每一次尝试都失败了。不知何故,形状总是最终成为没有圆角的规则矩形。

我正在寻找创建 roundRectShape 可绘制对象的基本框架 class(如提供的那样)。只要它有圆角,高度和宽度并不重要。必须在 Java 而不是 XML。

我尝试创建圆角矩形的链接:

1.https://developer.android.com/reference/android/graphics/drawable/shapes/RoundRectShape.html

2.http://alvinalexander.com/java/jwarehouse/android/graphics/java/android/graphics/drawable/shapes/RoundRectShape.java.shtml

3.https://www.codota.com/android/scenarios/52c5d269da0a37e1836d6e75/android.graphics.drawable.shapes.RoundRectShape?tag=coyote

4.http://developer.oesf.biz/em/developer/reference/durian/android/graphics/drawable/shapes/RoundRectShape.html

5.https://android.googlesource.com/platform/frameworks/base/+/donut-release/graphics/java/android/graphics/drawable/shapes/RoundRectShape.java

6.Android: RoundRectShape: Modify corner radii

7.http://www.programcreek.com/java-api-examples/index.php?api=android.graphics.drawable.shapes.RoundRectShape

8.http://www.edumobile.org/android/shape-drawing-example-in-android/ 9.http://programtalk.com/java-api-usage-examples/android.graphics.drawable.shapes.RoundRectShape/

为什么不用Canvasclass的drawRoundRect函数呢? public class RoundRect{ int l,r,t,b,rx,ry; 油漆油漆;

    public RoundRect(int l,int r,int t,int b,int rx,int ry,Paint paint){
        this.l=l;
        this.r=r;
        this.t=t;
        this.b=b;
        this.paint=paint;
    }
    public void draw(Canvas c,Paint paint){ 
        c.drawRoundRect(l,t,r,b,rx,ry,paint);
    }
}`

我创建了一个 class MyRect 用于为您绘制圆角矩形。

public class MyRect {

    public static Paint paint;  // default paint use for all my MyRect objects

    static {

        paint=new Paint();
        paint.setColor(Color.RED);
    }

    public float x,y,width,height;
    public float roundStrength=30;

    public MyRect(float x, float y, float width,float height){
        this.x=x;
        this.y=y;
        this.width=width;
        this.height=height;
    }

    public MyRect(float x, float y, float width,float height,float roundStrength){
        this(x,y,width,height);
        this.roundStrength=roundStrength;
    }

    public void draw(Canvas canvas){
         canvas.drawRoundRect(x-width/2,y-height/2,x+width/2,y+height/2,roundStrength,roundStrength,paint);
    }
}

创建上面的对象 MyRect 是不够的,我们需要在任何容器中保留对象的引用,以便将来修改或删除该对象。

static ArrayList<MyRect> myRects=new ArrayList<>(); 

View/SurfaceViewonDraw(Canvas canvas) 方法中调用 MyRect 的 draw() 方法。

for(MyRect rect:myRects)
    rect.draw(canvas);

完成,创建对象并添加到容器。

myRects.add(new MyRect(touchx,touchy,100,100)); 

myRects.add(new MyRect(touchx,touchy,100,100,50)); 

您还可以扩展MyRect,例如根据需要添加更多构造函数、方法和数据成员。

自定义可绘制对象

您可以通过扩展 drawable 创建自定义 drawable class

创建自定义 Drawable 的步骤

1.Subclass Drawable并实现以下方法methods

  • public void draw(@NonNull Canvas canvas) - 你将得到一个 canvas 对象来绘制 shapes.Call getBounds() 方法在这里根据我们应用可绘制对象的视图获取尺寸。
  • public void setAlpha(@IntRange(from = 0, to = 255) int alpha) - 您将在此处获得一个 alpha 整数值,将其设置为您在其中绘制形状的主要涂料。
  • public void setColorFilter(@Nullable ColorFilter colorFilter) - 您将在此处获得 ColorFilter 对象,将其设置为您在其中绘制形状的主要涂料。
  • public int getOpacity() - Return 这里的不透明度值如 PixelFormat.TRANSLUCENT,PixelFormat.TRANSPARENT,PixelFormat.RGB_888 等

2.In onDraw()调用canvas.drawRoundRect()方法绘制形状

  • public void drawRoundRect(@android.support.annotation.NonNull android.graphics.RectF rect,float rx,float ry,@android.support.annotation.NonNull android.graphics.Paint paint)

    使用指定的paint绘制指定的round-rect。圆角 将根据绘画中的样式进行填充或加框。

    参数:

    1) rect - 要绘制的 roundRect 的矩形边界 2) rx - 用于圆角的椭圆的 x 半径 3) ry - 用于圆角的椭圆的 y 半径 4) paint - 用来绘制roundRect

  • 的paint

代码示例

import android.graphics.Canvas;
import android.graphics.ColorFilter;
import android.graphics.Paint;
import android.graphics.PixelFormat;
import android.graphics.Rect;
import android.graphics.RectF;
import android.graphics.drawable.Drawable;
import android.support.annotation.IntRange;
import android.support.annotation.NonNull;
import android.support.annotation.Nullable;

/**
 * Created by jinesh on 24/5/17.
 */

public class RoundedRectangle extends Drawable {
    private Paint rectPaint;
    private RectF drawableBounds;
    public RoundedRectangle(int rectBackground) {
        rectPaint=new Paint(Paint.ANTI_ALIAS_FLAG);
        rectPaint.setColor(rectBackground);
        drawableBounds=new RectF();
    }

    @Override
    public void draw(@NonNull Canvas canvas) {
        Rect bounds=getBounds();
        drawableBounds.set(bounds.left,bounds.top,bounds.right,bounds.bottom);
        canvas.drawRoundRect(drawableBounds,10,10,rectPaint);
    }

    @Override
    public void setAlpha(@IntRange(from = 0, to = 255) int alpha) {
       rectPaint.setAlpha(alpha);
    }

    @Override
    public void setColorFilter(@Nullable ColorFilter colorFilter) {
       rectPaint.setColorFilter(colorFilter);
    }

    @Override
    public int getOpacity() {
        return PixelFormat.TRANSLUCENT;
    }
}

设置为来自 activity

的任何视图
 RoundedRectangle roundedRectangle=new RoundedRectangle(ContextCompat.getColor(this,R.color.colorAccent));
 textView.setBackground(roundedRectangle);

截图: