b60257d288ce

image.png

Progressbar 实现Loading动画

网络加载,播放视频 loading 时候界面会显示 转圈 等待提示动画,使用Android 自带的Progressbar 即可实现,在使用的时候控制其Visible 属性;

布局layout目录文件中添加Progressbar

android:id="@+id/help_center_loading_prgbar"

style="@style/CustomProgressBar_Small"

android:layout_width="wrap_content"

android:layout_height="wrap_content"

android:layout_centerInParent="true"

android:visibility="visible"/>

Value/style.xml中添加:

@drawable/progress_small_holo

27dip

27dip

27dip

27dip

drawable 目录添加progress_small_holo.xml 文件

android:drawable="@drawable/loading_small"

android:pivotX="50%"

android:pivotY="50%"

android:fromDegrees="0"

android:toDegrees="720" />

Logo

为开发者提供学习成长、分享交流、生态实践、资源工具等服务,帮助开发者快速成长。

更多推荐