【发布时间】:2012-03-09 05:00:11
【问题描述】:
我的问题是关于这篇文章的
Is it possible to set an animated gif file as live wallpaper in android?
这篇文章中给出的方法似乎不起作用。当我将动画 .gif 文件放入 /res/raw 文件夹时,出现一个错误,提示我的文件无法解析或不是字段。我是否应该了解原始文件夹中的资源或存在其他问题。以下是代码。
BelleEngine() 抛出 IOException {
InputStream is = getResources().openRawResource(R.raw.ballerina);
if (is != null) {
try {
mBelle = Movie.decodeStream(is);
mBelleDuration = mBelle.duration();
} finally {
is.close();
}
} else {
throw new IOException("Unable to open R.raw.belle");
}
提前感谢您的帮助!
【问题讨论】:
标签: android live-wallpaper animated-gif