gpt4 book ai didi

android textpaint 看起来不像具有相同参数的 textview

转载 作者:行者123 更新时间:2023-11-30 03:12:46 25 4
gpt4 key购买 nike

我试图让我的 TextPaint 看起来完全像 TextView,但是 TextView 的文本总是比用 TextPaint 绘制的文本大一点>。

TextView 文本:

 <TextView
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:textSize="20dp"
android:typeface="serif"
android:text="some text"
/>

TextPaint 文本:

    int textSize = 20;
paint = new TextPaint();
paint.setTextSize(textSize*density);
paint.setTypeface(Typeface.SERIF);
paint.setColor(Color.BLACK);

最佳答案

您必须在第二个列表中将尺寸转换为像素:

int size = 20; //20dp

int pixels = (int) TypedValue.applyDimension(TypedValue.COMPLEX_UNIT_DIP,
size, getResources().getDisplayMetrics());

关于android textpaint 看起来不像具有相同参数的 textview,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/20664403/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com