在Android布局中,可以使用以下屬性來設置控件的大小和邊距:
示例代碼:
<Button
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_marginTop="20dp"
android:layout_marginBottom="20dp"
android:layout_marginLeft="10dp"
android:layout_marginRight="10dp"
android:text="Button" />
以上是常用的設置控件大小和邊距的方式,根據具體需求,還可以使用其他屬性來調整控件的大小和位置。