必威体育Betway必威体育官网
当前位置:首页 > IT技术

Andorid 布局layout_margin和padding分析

时间:2019-07-21 07:41:03来源:IT技术作者:seo实验室小编阅读:77次「手机版」
 

layout_marginleft

很长时间对于margin和padding的作用区别模糊,不知道有什么区别。

这次经过试验终于搞清楚了:

margin是控件或者布局的整体区域,相对于父布局以及周围控件和布局的上下左右的距离。

padding是当前控件或者布局的有效区域(比如下图中红色的文本输入框的输入区域),相对于控件或者布局的整体区域的边界的上下左右的距离。

布局文件如下:

看这个标识图则一目了然

<?xml version="1.0" encoding="utf-8"?>
<Linearlayout xmlns:Android="http://schemas.android.com/apk/res/android"
    android:layout_width="fill_parent"
    android:layout_height="fill_parent"
    android:orientation="vertical" >

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:layout_marginBottom="15dp"
        android:layout_marginleft="50dp"
        android:layout_marginRight="50dp"
        android:orientation="horizontal" >

        <TextView
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:text="姓名"
            android:textSize="20sp" />

        <EditText
            android:id="@+id/name"
            android:layout_width="0dp"
            android:layout_height="wrap_content"
            android:layout_weight="5"
            android:hint="请输入您的姓名" />
    </LinearLayout>

    <LinearLayout
        android:layout_width="fill_parent"
        android:layout_height="wrap_content"
        android:orientation="vertical" 
        android:layout_margintop="100dp"
        android:layout_marginLeft="30dp"
        android:layout_marginRight="30dp"
        android:layout_marginBottom="100dp"
        
        >

        <TextView
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="5"
            android:text="年龄"
            android:textSize="18sp" />
        <View
            android:layout_width="match_parent"
            android:layout_height="2dp"
            android:background="@color/pidingline_color" />

        <EditText
            android:id="@+id/age"
            android:layout_width="fill_parent"
            android:layout_height="wrap_content"
            android:layout_weight="1"
            android:paddingTop="30dp"
            android:paddingBottom="30dp"
            android:paddingLeft="30dp"
            android:paddingRight="30dp"
            
            android:background="#aa0000"
            android:hint="请输入您的年龄" />
    </LinearLayout>

</LinearLayout>

相关阅读

android:layout_marginLeft等的简单用法

靠右显示:用 android:layout_marginLeft,意思是距离左边框的距离;靠左显示:用android:layout_marginRight,意思是距离右边框的距离。

详解 layout_marginTop 与 layout_marginBottom

layout_marginTop,layout_marginBottom,layout_marginRight,layout_marginLeft 是 RelativeLayout 中的四种属性,今天在进行UI设计

分享到:

栏目导航

推荐阅读

热门阅读