
正文
关于Android的margin(当前视图与周围视图的距离)和padding(当前视图与内部内容的距离)
提示:扫一扫查出行【扫一扫了解最新限行尾号】
复制提示
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="300dp"
android:background="#00aaff"
android:orientation="vertical"
android:padding="5dp"> <LinearLayout
android:layout_width="match_parent"
android:layout_height="match_parent"
android:layout_margin="20dp"
android:background="#ffff99"
android:padding="60dp"> <view
android:layout_width="match_parent"
android:layout_height="match_parent"
android:background="#ff0000">
</view> </LinearLayout>
</LinearLayout>








