Android设置控件距离边框的距离

  • Post author:
  • Post category:其他

    <EditText
        android:layout_width="match_parent"
        android:layout_height="46dp"
        android:text="请输入账号"
        android:id="@+id/edittext1"
        android:textSize="20sp"
        android:background="#EDEDED"
        android:layout_marginTop="48dp"//控件距离顶部边框的距离
        android:layout_marginLeft="35dp"//控件距离左边边框的距离
        android:layout_marginRight="35dp" //控件距离右边边框的距离
        android:layout_marginbottom="35dp" //控件距离下边边框的距离
        />

在这里插入图片描述


版权声明:本文为weixin_44911775原创文章,遵循 CC 4.0 BY-SA 版权协议,转载请附上原文出处链接和本声明。