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