gpt4 book ai didi

android - 在图像加载时显示微调器

转载 作者:太空宇宙 更新时间:2023-11-03 13:30:48 25 4
gpt4 key购买 nike

Spinner

我想在 Imageview 中默认显示此图像。我将它设置为位图,但它没有旋转。

请帮我展示旋转的图像。

最佳答案

在 FrameLayout 中有 ImageView 和 ProgressBar。在你的 OnCreate() 方法中添加这个,

progressBar.setVisibility(View.VISIBLE);
imageView.setVisibility(View.INVISIBLE);

现在加载您的图像。加载后,调用这个:

progressBar.setVisibility(View.INVISIBLE);
imageView.setVisibility(View.VISIBLE);

进度条

 <ProgressBar
android:layout_width="wrap_content"
android:layout_height="wrap_content"
style="@android:style/Widget.ProgressBar.Small"
/>

关于android - 在图像加载时显示微调器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/13543748/

25 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com