如何将自定义微调器图像应用到 Android 中的进度对话框
您好,我尝试将自定义微调器图像应用于 Android 中的进度拨号,我使用 .gif 文件用于此目的,并且我通过此代码应用它,
dialog = new ProgressDialog(BackupRestoreActivityContext);
dialog.setCancelable(true);
dialog.setIcon(resId);
dialog.setTitle(title);
dialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
dialog.setIndeterminate(true);
dialog.setIndeterminateDrawable(BackupRestoreActivityContext.getResources().getDrawable(R.drawable.bar));
dialog.show();
通过此代码微调器图像更改为 bar.gif 但它不旋转, 请帮助我这有什么问题,非常感谢在这方面的任何帮助。
hi i tring to apply custom spinner image to progress dialod in android i use a .gif file for this purpose,and i apply it through this code,
dialog = new ProgressDialog(BackupRestoreActivityContext);
dialog.setCancelable(true);
dialog.setIcon(resId);
dialog.setTitle(title);
dialog.setProgressStyle(ProgressDialog.STYLE_SPINNER);
dialog.setIndeterminate(true);
dialog.setIndeterminateDrawable(BackupRestoreActivityContext.getResources().getDrawable(R.drawable.bar));
dialog.show();
through this code Spinner image changed to bar.gif but it is not spinning,
please kindly help me whats wrong with this,thanks any help in this regard is greatly appreciated.
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论
评论(2)
我的回答有点晚了,但是,你可以这样做:
1.- 制作一个可绘制的动画
例如:my_animation.xml
2.- 在你的活动调用中
A little late my answer but, you can do this:
1.- Make an animation drawable
For example : my_animation.xml
2.- In your activity call
在 Android 中,动画 gif 在 ImageView 中不起作用。您需要将它们作为电影播放,如示例 ApiDemos 所示。
但是您可以将 gif 分解为多个文件并创建动画资源文件。
动画文件是一个 xml 文件,描述要显示的可绘制列表和每帧的持续时间(或者要应用的转换,如果可以使用它们)。
您可以在此处阅读官方文档中的详细信息:
http://developer.android.com/guide/topics/resources /animation-resource.html#Frame
这个可绘制对象应该可以在您的 ProgressDialog 中正常工作
In Android, animated gif don't work in ImageView. You need to play them as movies as shown by the sample ApiDemos.
But you can explode your gif in multple files and create an animation ressource file.
An animation file is an xml file describing the list of drawable to display and the duration of each frame (or the transformations to apply if you can use them).
You can read the details in the official documentation here:
http://developer.android.com/guide/topics/resources/animation-resource.html#Frame
This drawable should then work nicely in your ProgressDialog