2

我正在尝试用特定颜色绘制圆角矩形,但我什么也没得到。我已经做了很多谷歌搜索,发现了一些这样的问题并阅读了它们。但是,他们都没有解决我的问题。为什么我的onDraw方法永远不会被调用?

任何帮助表示赞赏。

public class RoundedTagItem extends RelativeLayout {

    Context ctx;
    String colorString;
    int color;

    public RoundedTagItem(Context context) {
        super(context);
        this.ctx = context;
        color = Color.WHITE;
        this.setWillNotDraw(false);
        this.setPadding(10, 0, 10, 0);
    }

    public RoundedTagItem(Context context, String color) {
        super(context);
        this.ctx = context;
        this.colorString = color;
        this.setWillNotDraw(false);
        this.setPadding(10, 0, 10, 0);
    }

    @Override
    protected void onDraw(Canvas canvas) {

       if(colorString != null)
             color = Color.parseColor("#" + colorString);

       int rectValue = 35;
       Log.d("Rounded", "rectValue: " + rectValue);
       RectF rect1 = new RectF(0, 0, rectValue, rectValue);

       Paint paint = new Paint();
       paint.setStrokeWidth(1);
       paint.setStrokeCap(Paint.Cap.ROUND);
       paint.setStyle(Paint.Style.FILL);
       paint.setAntiAlias(true);
       paint.setColor(color);

       canvas.save();
       canvas.drawRoundRect(rect1, 10, 10, paint);
       canvas.restore();

       super.onDraw(canvas);
    }

    public void ChangeBackgroundColor(String colorString) {
        color = Color.parseColor(colorString);
        invalidate();
    }

}

然后我在我的主类的这个自定义视图上放置了图标:

// add category items to view
LinearLayout categories = (LinearLayout) findViewById(R.id.detailTagImagesLayout);
for(int i = 0; i < item.getCategoryItems().size(); i++) {

    RoundedTagItem v = null;
    if(i == 0) 
        v = new RoundedTagItem(DetailActivity.this, 
                           item.getCategoryItems().get(i).getColorCode());
    else 
        v = new RoundedTagItem(DetailActivity.this);            

    ImageView img = new ImageView(DetailActivity.this);
    img.setImageDrawable(Drawable.createFromPath(
                     item.getCategoryItems().get(i).getLightIconUrl()));
    v.addView(img);

    v.setTag(i);
    v.setOnClickListener(new TagClickListener());               

    categories.addView(v);
}
4

2 回答 2

1

您可以进行/修复的一些改进/问题...

您可以将这些行移动到您的构造函数:

if(colorString != null)
   color = Color.parseColor("#" + colorString);

由于这colorString永远不会改变,而且您现在正在计算的方式每次都会onDraw被调用(并且他会被调用很多次)。

其次,请将您的移动super.onDraw(canvas)到您的第一行。

第三,您需要在构造函数上定义 LayoutParams。如果视图的宽度/高度为 0,则永远不会调用它的绘制!

this.setLayoutParams(new LayoutParams(150, 150));

最后请确保您使用的是RoundTagItem. 您可以使用这样的标签将此视图添加到您的 xml:您正在使用的包在哪里 ( <your.package.RoundTagItem>) 。如果你像这样使用它,请确保你定义了和。your.packagecom.something.blablalayout_widthlayout_height

您还可以通过添加到您的根视图(您可以使用 获取它findViewById(R.layout.your_root))或将您的视图设置为主要内容来以编程方式添加您的视图。

RoundedTagItem myView = new RoundedTagItem(this);
setContentView(myView);
于 2012-09-27T08:13:08.430 回答
0

尝试创建一个简单的单个 RelativeLayout XML (rounded_tag_item.xml),并为自定义视图充气:

public class RoundedTagItem extends RelativeLayout {

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

    public RoundedTagItem(Context context) {
        super(context);
        init(context);  
    }

    private void init(Context context) {
        LayoutInflater inflater = (LayoutInflater)context.getSystemService(Context.LAYOUT_INFLATER_SERVICE);

        if (inflater != null) {       
            RelativeLayout layout = (RelativeLayout) inflater.inflate(R.layout.rounded_tag_item, new RelativeLayout(context));

            // rest of stuff...
        }
    }
}
于 2012-09-27T07:44:38.130 回答