Android 是否有任何方法、属性或 xml 标签可以像 iOS 一样拉伸图像?
例如:
UIImage *stretchableBackButton = [[UIImage imageNamed:@"back.png"] stretchableImageWithLeftCapWidth:6 topCapHeight:6];
[button setBackgroundImage:stretchableBackButton forState:UIControlStateNormal];
它将图像从 6 px 拉伸到整个宽度/高度。
谢谢...