前言
在Android开发中,控件位置的确定,和控件与控件之间位置确定详细介绍
。
控件位置
android:layout_gravity=“center”
控件中文本位置
android:gravity=“center”
控件之间的间距有两种设置:
android:layout_margin=“10dp” //外边距
android:padding=“10dp” //内边距
有五个属性控制控件的间距,分别是
android:layout_marginLeft //左间距
android:layout_marginRight //右间距
android:layout_marginTop //上间距
android:layout_marginBottom //下间距
android:layout_margin //四边统一间距
android:layout_marginTop=“25dip” //顶部距离