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

android:layout_marginLeft等的简单用法

时间:2019-06-17 23:40:00来源:IT技术作者:seo实验室小编阅读:57次「手机版」
 

layout_marginleft

靠右显示:用 Android:layout_marginleft,意思是距离左边框的距离;

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

同理,

android:layout_margintop: 距离上边框

android:layout_marginBottom: 距离下边框

  

下面,是靠右显示的例子:

<LinearLayout

        android:layout_width="wrap_content"

        android:layout_height="wrap_content"

        android:layout_marginLeft="100dp"

        android:layout_alignparentRight="true"   // 这个可有可无

        android:orientation="vertical"

         >

        <TextView

            android:id="@+id/text_timer"

            android:layout_width="wrap_content"

            android:layout_height="wrap_content"

            android:text="timer" />

    </LinearLayout>

相关阅读

paddingLeft 与 layout_marginLeft 的区别

paddingleft(内边距) 是指对其内部内容的内边距 layout_marginLeft (外边距)是指距离外部的容器的距离 该图片中的第一个是加上  an

分享到:

栏目导航

推荐阅读

热门阅读