Find centralized, trusted content and collaborate around the technologies you use most.
Teams
Q&A for work
Connect and share knowledge within a single location that is structured and easy to search.
默认情况下是否TextView设置了一些填充?我正在尝试创建两个TextViews,我注意到在TextViews没有我明确设置的情况下有一些填充。如果是,那么它的价值是什么?或者我在哪里可以找到这方面的更多信息?
TextView
TextViews
是的,android 中存在字体填充。 您也可以通过以下方式禁用它
mTextView.setIncludeFontPadding(false);
或 xml 属性
android:includeFontPadding="false"