0

我为矩形创建了一个类,因为它是我的应用程序中的一个对象。但是现在我希望角落变圆。您可以在下面看到它是一个简单的类,可以创建具有相同属性的任意数量的矩形。

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 可绘制对象的裸骨类(如提供的类)。只要它有圆角,高度和宽度就无关紧要。必须使用 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 :修改圆角半径

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。圆形矩形/

4

3 回答 3

5

我创建了一个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<>(); 

/调用MyRect的方法里面的onDraw(Canvas canvas)方法。ViewSurfaceViewdraw()

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根据您的要求进行扩展,例如添加更多构造函数、方法和数据成员。

于 2017-05-21T22:10:00.990 回答
4

自定义可绘制

您可以通过扩展可绘制类来创建自定义可绘制对象

创建自定义 Drawable 的步骤

1.子类Drawable并实现以下方法methods

  • public void draw(@NonNull Canvas canvas)- 您将获得一个画布对象来绘制形状。在此处调用 getBounds() 方法以根据我们应用可绘制对象的视图获取尺寸。
  • public void setAlpha(@IntRange(from = 0, to = 255) int alpha)- 您将在此处获得一个 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 -用于绘制圆形矩形的油漆

代码示例

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

截屏:

在此处输入图像描述

于 2017-05-24T13:04:15.763 回答
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);
    }
}`
于 2017-05-14T04:51:10.447 回答