java Android:EditText 的默认文本大小是多少?

声明:本页面是StackOverFlow热门问题的中英对照翻译,遵循CC BY-SA 4.0协议,如果您需要使用它,必须同样遵循CC BY-SA许可,注明原文地址和作者信息,同时你必须将它归于原作者(不是我):StackOverFlow 原文地址: http://stackoverflow.com/questions/15314549/
Warning: these are provided under cc-by-sa 4.0 license. You are free to use/share it, But you must attribute it to the original authors (not me): StackOverFlow

提示:将鼠标放在中文语句上可以显示对应的英文。显示中英文
时间:2020-10-31 19:12:24  来源:igfitidea点击:

Android: What is the default textsize of an EditText?

javaandroidandroid-layoutandroid-edittexttext-size

提问by Xander

Simple question: I want to know what the default textsize of an EditText is. Does anyone know?

简单的问题:我想知道 EditText 的默认文本大小是多少。有人知道吗?

回答by DjHacktorReborn

try

尝试

mEditText.getTextSize()

it will return in px to convert on sp

它将以 px 返回以在 sp 上进行转换

float scaledDensity = context.getResources().getDisplayMetrics().scaledDensity;
 sp =  px/scaledDensity;