Android TextView 文字周边的空白部分是多少
Posted
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android TextView 文字周边的空白部分是多少相关的知识,希望对你有一定的参考价值。
控件之间的间距有两种设置:android:layout_margin="10dp" 外边距
android:padding="10dp" 内边距
Android中 padding和margin的简单地理解:margin为外边距,padding为内边距。
1.padding的常用属性:
android:paddingTop
android:paddingBottom
android:paddingLeft
android:paddingRight
2.margin的常用属性:
android:layout_marginTop
android:layout_marginBottom
android:layout_marginLeft
android:layout_marginRight 参考技术A 空白部分多少取决于你设置了TextView宽度,和高度,如果不想那么多直接可以设置它水平居中或者垂直居中,或者两者都居中 android:gravity="center"
以上是关于Android TextView 文字周边的空白部分是多少的主要内容,如果未能解决你的问题,请参考以下文章