我尝试使用button
创建Rect
。我已经成功创建了这个,但是我的图像和文字没有正确地放在中心位置。我想设置在准确的中心,但无法实现。我需要Rect
执行此操作。请指导我,任何帮助将不胜感激。感谢
这是我的代码段
RectF rightButton = new RectF(itemView.getRight() -
buttonWidthWithoutPadding, itemView.getTop(), itemView.getRight(), itemView.getBottom());
p.setColor(Color.parseColor("#F44336"));
c.drawRoundRect(rightButton, corners, corners, p);
drawView("DELETE", c, rightButton, p);
//draw view method
private void drawView(String text, Canvas c, RectF button, Paint p) {
float textSize = 20;
p.setColor(Color.WHITE);
p.setAntiAlias(true);
p.setTextSize(textSize);
float textWidth = p.measureText(text);
Bitmap bmp = drawableToBitmap(ContextCompat.getDrawable(mContext, R.drawable.delete_white_24dp));
c.drawBitmap(bmp, button.centerX() - (bmp.getWidth() / 2), button.centerY() - (bmp.getHeight()/2), null);
c.drawText(text, button.centerX() - (textWidth / 2), button.centerY() + bmp.getHeight(), p);
}
预期输出
我的输出(不完全在中心,图像和文字之间也没有空格
答案 0 :(得分:2)
在drawView中尝试此操作(而不是最后两行):
float spaceHeight = 10; // change this to whatever looks good to you
Rect bounds = new Rect();
p.getTextBounds(text, 0, text.length(), bounds);
float combinedHeight = bmp.getHeight() + spaceHeight + bounds.height();
c.drawBitmap(bmp, button.centerX() - (bmp.getWidth() / 2), button.centerY() - (combinedHeight / 2), null);
c.drawText(text, button.centerX() - (textWidth / 2), button.centerY() + (combinedHeight / 2), p);
您希望图标+空格+文本的组合居中,而不仅仅是图标。现在,图标完全位于中间,文字由于图标的一半高,正好低于它。