gpt4 book ai didi

android - 使用 getTextSize() 测试按钮上文本的大小

转载 作者:行者123 更新时间:2023-11-29 15:37:13 24 4
gpt4 key购买 nike

我需要检查按钮上的文字大小是否为 37sp。我找到了一种获取大小的方法:.getTextSize(),但我收到的大小是:126.0,而不是 48sp。代码关闭按钮:

<Button
android:id="@+id/buttoneql"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:text="="
android:textColor="@android:color/black"
android:textSize="48sp" />

测试:

buttoneql = (Button) currentActivity.findViewById(R.id.buttoneql);
assertEquals( 48.0f, buttoneql.getTextSize() );

我应该如何获得文字大小的正确值?

最佳答案

getTextSize() 返回 px float

这是将 PX 格式转换为 SP 格式的代码。

view.setTextSize(TypedValue.COMPLEX_UNIT_PX, 24);

关于android - 使用 getTextSize() 测试按钮上文本的大小,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/47329095/

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