1

我正在尝试将画布绘制的位图渲染到 App Widget 中的 ImageView 上。无法让它工作,我正在尝试一个更简单的示例,没有 RemoteViews 对象,所以只是尝试将一些矩形渲染到画布中,然后在 ImageView 上设置它。我只看到一个空白活动。这是代码示例:

LinearLayout layout = new LinearLayout (this);
layout.setDrawingCacheEnabled(true);
try
{
    Bitmap bitmap = Bitmap.createBitmap(100, 100, Bitmap.Config.ARGB_8888); 
    Canvas canvas = new Canvas(bitmap);
    Paint red = new Paint ();
    red.setColor(0xCC0000);
    Paint blue = new Paint ();
    blue.setColor (0x0099CC);
    canvas.drawRect(0, 0, 100, 100, red);
    int percent = 55;
    canvas.drawRect(0, 0, percent, 100, blue);
    ImageView imageView = new ImageView (this);
    imageView.setDrawingCacheEnabled(true);
    imageView.setImageBitmap(bitmap);
    imageView.setAdjustViewBounds(true);
    imageView.setLayoutParams(new LinearLayout.LayoutParams(LayoutParams.WRAP_CONTENT,
              LayoutParams.WRAP_CONTENT));
    layout.addView(imageView);

}
catch(Exception e)
{
    Log.e("ElectionForecastWidgetProvider", "error with bar", e);
}
this.setContentView(layout);

在堆栈溢出和其他地方搜索之后,我一直在调整各个部分,例如尝试 setDrawingCacheEnabled 方法。任何人都可以在这里提供任何见解吗?谢谢!

4

1 回答 1

1

颜色以 ARGB 格式呈现,尝试将其更改为;

...
red.setColor(0xFFCC0000);
...
blue.setColor (0xFF0099CC);
...
于 2012-09-17T19:55:14.463 回答