Android Canvas:创建RoundRectShape对象

时间:2017-05-14 04:47:31

标签: java android android-canvas shapedrawable android-shapedrawable

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

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 drawable。只要它有圆角,高度和宽度无关紧要。必须是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/

3 个答案:

答案 0 :(得分:4)

我创建了一个类S.sortBySome(),用于为您绘制圆角矩形。

Collections.sort()

创建上面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<>(); 内部onDraw(Canvas canvas)方法调用MyRect的View方法。

SurfaceView

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

draw()

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

您还可以扩展myRects.add(new MyRect(touchx,touchy,100,100)); ,例如根据您的要求添加更多构造函数,方法和数据成员。

答案 1 :(得分:3)

自定义绘图

您可以通过扩展drawable类

来创建自定义drawable

创建自定义可绘制的步骤

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

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

2.在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)

    使用指定的绘画绘制指定的圆形矩形。圆正 将根据油漆中的风格填充或框起。

    参数:

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

代码示例

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;
    }
}

设置为活动的任何视图

 RoundedRectangle roundedRectangle=new RoundedRectangle(ContextCompat.getColor(this,R.color.colorAccent));
 textView.setBackground(roundedRectangle);

截图:

enter image description here

答案 2 :(得分:2)

为什么不使用drawRoundRect类的Canvas函数? 公共类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);
    }
}`