Android examples for Graphics:Drawable Operation
create InsertDrawable
//package com.java2s; import android.graphics.Rect; import android.graphics.drawable.Drawable; import android.graphics.drawable.InsetDrawable; public class Main { public static InsetDrawable createInsertDrawable(Drawable drawable, Rect rect) {// ww w . j a v a2s . c o m return new InsetDrawable(drawable, rect.left, rect.top, rect.right, rect.bottom); } }