作者热门文章
- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
我需要检查按钮上的文字大小是否为 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/
我是一名优秀的程序员,十分优秀!