如何在 MIT App Inventor 中显示具有透明背景的动画 gif?
How to display an animated gif with transparent background im MIT App Inventor?
我无法在 MIT App Inventor 中播放透明背景的 GIF。
我使用图像组件来显示 GIF,但它不起作用。
在host查看上传的GIF,发现GIF的背景自动设置为白色。
只需在您的应用中使用 Glide 库,请检查以下代码
ImageView imageView = (ImageView) findViewById(R.id.imageView);
GlideDrawableImageViewTarget imageViewTarget = new GlideDrawableImageViewTarget(imageView);
Glide.with(this).load(R.raw.sample_gif).into(imageViewTarget);
在 App Inventor 中使用 webviewer 组件,请在此处查看示例 App Inventor and animated gifs
然而背景并不是真的可以透明,因为你的应用程序本身不能透明。
提示:下次Google 像这样搜索
https://www.google.com/search?q=App+Inventor+animated+gif ...
您自己可以轻松找到问题的答案.. .
我无法在 MIT App Inventor 中播放透明背景的 GIF。 我使用图像组件来显示 GIF,但它不起作用。 在host查看上传的GIF,发现GIF的背景自动设置为白色。
只需在您的应用中使用 Glide 库,请检查以下代码
ImageView imageView = (ImageView) findViewById(R.id.imageView);
GlideDrawableImageViewTarget imageViewTarget = new GlideDrawableImageViewTarget(imageView);
Glide.with(this).load(R.raw.sample_gif).into(imageViewTarget);
在 App Inventor 中使用 webviewer 组件,请在此处查看示例 App Inventor and animated gifs 然而背景并不是真的可以透明,因为你的应用程序本身不能透明。
提示:下次Google 像这样搜索
https://www.google.com/search?q=App+Inventor+animated+gif ...
您自己可以轻松找到问题的答案.. .