如何为片段创建加载效果?

时间:2015-09-30 10:54:40

标签: android android-fragments fragment loading

我需要在片段中接收数据时显示加载不确定进度条。我怎样才能做到这一点?我试图使用这个示例代码,但它并没有像我预期的那样对我有用。

enter image description here

2 个答案:

答案 0 :(得分:0)

在数据检索类中使用名为doPostExecute()的方法定义接口,例如在AsyncClass中,在检索数据时调用此 doPostExecute()方法。

现在在Fragment中实现此接口并运行进度条,直到发生此回调

答案 1 :(得分:0)

如果您想要旋转圆圈,请使用以下内容。

 <ProgressBar
        android:id="@+id/progress_bar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:indeterminate="true"
        />