如何在android中将Drawable对象添加到Parcel对象中?

发布于 2024-12-29 10:59:10 字数 138 浏览 2 评论 0原文

我在向 Parcel 对象添加可绘制对象时遇到问题,以便将对象从一个活动发送到另一个活动。

有像 writeString(String) 这样的方法可以将字符串添加到 Parcel 对象中。但不知道如何向Parcel对象添加一个Drawable。

I'm facing problem in adding a drawable object to a Parcel object, in order to send an object from one activity to another activity.

There are methods like writeString(String) to add strings to a Parcel object. But do not know how to add a Drawable to the Parcel object.

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

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

发布评论

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

评论(3

无戏配角 2025-01-05 10:59:10

您无法将 Drawable 添加到 Parcel,因为 Drawable 未实现 Parcelable 接口。某些类型的 Drawable 可能实现 Parcelable,但我不知道有任何实现。

您可以在Parcel 中放入一些标识符(例如,drawable 资源ID),并让接收者自行获取Drawable

You cannot add a Drawable to a Parcel, as Drawable does not implement the Parcelable interface. Certain types of Drawable might implement Parcelable, but I am not aware of any.

You can put in the Parcel some identifier (e.g., drawable resource ID) and have the recipient obtain the Drawable on its own.

雨的味道风的声音 2025-01-05 10:59:10

我认为您可以尝试将 Drawable 包装在实现 Parcelable 的对象内。

I think you can try wrapping the Drawable inside an object that implements Parcelable.

迟月 2025-01-05 10:59:10

您可以使用 位图BitmapDrawable

假设您有一个名为 drawableDrawable 和一个名为 parcelParcel(应在其中写入对象) 。

要将 Drawable 写入 Parceable

if ( drawable != null ) {
    Bitmap bitmap = (Bitmap) ((BitmapDrawable) drawable).getBitmap();
    parcel.writeParcelable(bitmap, flags);
}
else {
    parcel.writeParcelable(null, flags);
}

从 Parceable 中读取 Drawable:

Bitmap bitmap = (Bitmap) in.readParcelable(getClass().getClassLoader());
if ( bitmap != null ) {
    drawable = new BitmapDrawable(bitmap);
}
else {
    drawable = null;
}

特别是,因为构造函数 BitmapDrawable(位图位图)已被弃用,您可能需要使用 BitmapDrawable(资源 res,Bitmap 位图) 代替。

drawable = new BitmapDrawable(context.getResources(), bitmap);

You can do that using Bitmap and BitmapDrawable.

Let's say you have a Drawable called drawable and a Parcel (in which the object should be written) called parcel.

To write a Drawable into a Parceable:

if ( drawable != null ) {
    Bitmap bitmap = (Bitmap) ((BitmapDrawable) drawable).getBitmap();
    parcel.writeParcelable(bitmap, flags);
}
else {
    parcel.writeParcelable(null, flags);
}

To read the Drawable from the Parceable:

Bitmap bitmap = (Bitmap) in.readParcelable(getClass().getClassLoader());
if ( bitmap != null ) {
    drawable = new BitmapDrawable(bitmap);
}
else {
    drawable = null;
}

In particular, since the constructor BitmapDrawable (Bitmap bitmap) has been deprecated, you might want to use BitmapDrawable (Resources res, Bitmap bitmap) instead.

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