我试图在 android 表盘上绘制图标,但在表盘上没有看到。我已经检查了这个链接。参考我在表盘上设置了复杂类型文本的文本,但它没有设置为 ICON、RANGED_VALUE、SMALL_IMAGE 等其他类型,所以请提出建议。
我需要这种类型的图标,其中红色标记复杂。我使用此代码绘制文本。
if (COMPLICATION_IDS[i] == RIGHT_DIAL_COMPLICATION) {
// RIGHT_DIAL_COMPLICATION calculations
int offset = (int) ((mWidth / 2) - textWidth) / 2;
complicationsX = (mWidth / 2) + offset;
canvas.drawText(
complicationMessage,
0,
complicationMessage.length(),
complicationsX,
mComplicationsY,
mComplicationPaint);
Log.e("log", "offset==" + offset + "==complicationsX==" + complicationsX);
Log.e("log", "mComplicationsY==" + mComplicationsY);
}
并将此代码用于图像但没有得到任何东西。
if (COMPLICATION_IDS[i] == LEFT_DIAL_COMPLICATION) {
complicationsX = (int) ((mWidth / 2) - textWidth) / 2;
Icon icon = complicationData.getIcon();
Drawable drawable = icon.loadDrawable(getApplicationContext());
if (drawable instanceof BitmapDrawable) {
Bitmap bitmap;
bitmap = ((BitmapDrawable) drawable).getBitmap();
canvas.drawBitmap(bitmap, complicationsX, mComplicationsY, null);
}
}