旋转图层列表内的位图

发布于 2024-12-03 00:53:57 字数 1184 浏览 1 评论 0原文

我正在尝试旋转包含在 layer-list 内的 item 中的位图layer-list 在 Android XML 文件中定义。我想从 Android 活动内部调整位图的旋转。我知道可以使用矩阵旋转位图,但我不确定如何更新 XML 文件中包含的位图。

到目前为止我的代码是:

// Inside Activity
Bitmap bitmapOrg = BitmapFactory.decodeResource(getResources(),
                R.drawable.face_line_green);

        int width = bitmapOrg.getWidth();
        int height = bitmapOrg.getHeight();

        Matrix matrix = new Matrix();
        matrix.postRotate(10);

        Bitmap resizedBitmap = Bitmap.createBitmap(bitmapOrg, 0, 0,
                width, height, matrix, true);

// Inside XML
    <?xml version="1.0" encoding="utf-8"?>
    <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
        <item android:top="6px">
            <bitmap android:src="@drawable/face_line_red" android:gravity="center" android:id="@+id/line_red" />
        </item>
        <item android:left="4px">
            <bitmap android:src="@drawable/face_line_green"
                android:gravity="center" android:id="@+id/line_green" />
        </item>
    </layer-list>

I'm trying to rotate a bitmap which is contained in an item inside a layer-list. The layer-list is defined in an Android XML file. I would like to adjust the rotation of the bitmap from inside an Android activity. I understand that bitmaps can be rotated using a Matrix however I'm not sure how to update the bitmap contained inside the XML file.

My code so far is:

// Inside Activity
Bitmap bitmapOrg = BitmapFactory.decodeResource(getResources(),
                R.drawable.face_line_green);

        int width = bitmapOrg.getWidth();
        int height = bitmapOrg.getHeight();

        Matrix matrix = new Matrix();
        matrix.postRotate(10);

        Bitmap resizedBitmap = Bitmap.createBitmap(bitmapOrg, 0, 0,
                width, height, matrix, true);

// Inside XML
    <?xml version="1.0" encoding="utf-8"?>
    <layer-list xmlns:android="http://schemas.android.com/apk/res/android">
        <item android:top="6px">
            <bitmap android:src="@drawable/face_line_red" android:gravity="center" android:id="@+id/line_red" />
        </item>
        <item android:left="4px">
            <bitmap android:src="@drawable/face_line_green"
                android:gravity="center" android:id="@+id/line_green" />
        </item>
    </layer-list>

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

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

发布评论

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

评论(1

寻找一个思念的角度 2024-12-10 00:53:57

您可以使用 RotateDrawable 轻松旋转 Bitmap。因此,执行 Bitmap 旋转的最简单方法是将其包装在 RotateDrawable 中,该 RotateDrawable 也将包装在 LayerListDrawable 中。

You can easily rotate Bitmap using a RotateDrawable. As a result, the easiest way to perform a Bitmap rotation is to wrap it in a RotateDrawable which will also be wrapped in your LayerListDrawable.

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