一:insertdrwawable表示一个drawable嵌入到另一个drawable内部,并且在内部留下一些边距,这一点很像drawable的padding属性。
二:drawable文件夹下:
<?xml version="1.0" encoding="utf-8"?>
<inset xmlns:android="http://schemas.android.com/apk/res/android"
android:drawable="@drawable/a"
android:insetLeft="50dp"
android:insetRight="50dp"
android:insetTop="50dp"
android:insetBottom="50dp">
</inset>
三:引用
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:background="@drawable/bitmap"
android:layout_width="match_parent"
android:layout_height="match_parent">
</LinearLayout>
四:显示效果,把一张icon大小图片拉升了