Android padding 和margin
Posted 行尸走肉
tags:
篇首语:本文由小常识网(cha138.com)小编为大家整理,主要介绍了Android padding 和margin相关的知识,希望对你有一定的参考价值。
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android" android:layout_width="match_parent" android:layout_height="match_parent" android:orientation="vertical"> <ImageView android:src="@drawable/ocean" android:layout_width="match_parent" android:layout_height="0dp" android:layout_weight="1" android:scaleType="centerCrop" android:layout_marginBottom="0dp" /> <TextView android:text="You\'re invited!" android:layout_width="match_parent" android:layout_height="wrap_content" android:textColor="@android:color/white" android:textSize="45sp" android:paddingLeft="8dp" android:background="#009688"/> <TextView android:text="Bonfire at the beach" android:layout_width="match_parent" android:layout_height="wrap_content" android:textColor="@android:color/white" android:paddingLeft="8dp" android:textSize="24sp" android:background="#009688"/> </LinearLayout>
以上是关于Android padding 和margin的主要内容,如果未能解决你的问题,请参考以下文章
Android 设置Padding和Margin(动态/静态)
Android之android:padding和android:layout_margin的区别