android 2.1 中的 android 位图渐变

发布于 2024-10-21 03:24:56 字数 202 浏览 1 评论 0原文

有没有办法在 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:

image with gradient

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 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

无法言说的痛 2024-10-28 03:24:56

您需要从 XML 还是代码中获取此信息?在代码中,尝试以下操作:

    /* Create a 200 x 200 bitmap and fill it with black. */
    Bitmap b = Bitmap.createBitmap(200, 200, Config.ARGB_8888);
    Canvas c = new Canvas(b);
    c.drawColor(Color.BLACK);

    /* Create your gradient. */
    LinearGradient grad = new LinearGradient(0, 0, 0, 50, Color.GRAY, Color.BLACK, TileMode.CLAMP);

    /* Draw your gradient to the top of your bitmap. */
    Paint p = new Paint();
    p.setStyle(Style.FILL);
    p.setShader(grad);
    c.drawRect(0, 0, 200, 50, p);

在 XML 中,只需在垂直线性布局中创建两个单独的视图即可。顶部视图应具有渐变可绘制背景,底部较高的视图应具有纯色背景。

Do you need this from XML or from code? In code, try this:

    /* Create a 200 x 200 bitmap and fill it with black. */
    Bitmap b = Bitmap.createBitmap(200, 200, Config.ARGB_8888);
    Canvas c = new Canvas(b);
    c.drawColor(Color.BLACK);

    /* Create your gradient. */
    LinearGradient grad = new LinearGradient(0, 0, 0, 50, Color.GRAY, Color.BLACK, TileMode.CLAMP);

    /* Draw your gradient to the top of your bitmap. */
    Paint p = new Paint();
    p.setStyle(Style.FILL);
    p.setShader(grad);
    c.drawRect(0, 0, 200, 50, p);

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.

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文