Android UI設計距離課題
Temperature: 0 °C
layout_marginTop指定該屬性所在控件距離上方的位置空間。
layout_marginBottom指定該屬性所在控件距離下方的位置空間。
layout_marginLeft指定該屬性所在控件距離左邊的位置空間。
layout_marginRight指定該屬性所在控件離距右邊的位置空間。
例如
android:id="@+id/text_view"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_below="@+id/radioGroup"
android:layout_centerHorizontal="true"
android:layout_marginTop="27dp"//距離上方的位置空間
android:layout_marginBottom="27dp"//距離下方的位置空間
android:text="測量你的健康數據"
android:textSize="20sp" />
補充如果要讓文字置中使用android:gravity屬性,以下方式
android:gravity="center_horizontal"
以上紀錄