layout - Android: how to prevent dynamic background drawable from stretching -
i need set layout's background dynamically calling myview.setbackgrounddrawable(bitmapdrawable bdb), want crop image rather stretching in layout, there way doing it?
i trying create drawable below set gravity, challenge can't hardcode android:src static drawable since image source has dynamic.
<bitmap android:src="@drawable/background" android:gravity="center" />
any suggestion appreciated!
you want use imageview.scaletype.center_crop
Comments
Post a Comment