android 2.1 中的 android 位图渐变
有没有办法在 android 2.1 中将渐变设置为位图对象?图像必须如下所示:
我只需要位图顶部的渐变。 DrawableGradient 或 LinearGradient 仅来自 android 2.2,因此这些对象对我没有任何帮助。谢谢
Is there a way to put a gradient to a bitmap object in android 2.1? The image must look like this:
I need the gradient only on top of the bitmap. DrawableGradient or LinearGradient are only from android 2.2 so these objects doesn't help me at all. Thanks
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(1)
您需要从 XML 还是代码中获取此信息?在代码中,尝试以下操作:
在 XML 中,只需在垂直线性布局中创建两个单独的视图即可。顶部视图应具有渐变可绘制背景,底部较高的视图应具有纯色背景。
Do you need this from XML or from code? In code, try this:
In XML, just make two separate views in a vertical linear layout. The top view should have a gradient drawable background, the bottom, taller view should have a solid background.