我正在progressDialog
我的应用程序中实现自定义,animation-list
用于显示动态图像,但我想要做的是,将我的活动嵌入progressDialog
到我的活动中,使其不会在屏幕上重叠,并且当任务完成时,视图会更新,而背面点击活动完成。
问问题
430 次
1 回答
0
在您的活动中创建ProgressDialog
并隐藏其他布局。
<FrameLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="match_parent"
android:layout_height="match_parent">
<ScrollView xmlns:android="http://schemas.android.com/apk/res/android"
android:id="@+id/content"
android:visibility="gone"
android:layout_width="match_parent"
android:layout_height="match_parent">
<TextView style="?android:textAppearanceMedium"
android:lineSpacingMultiplier="1.2"
android:layout_width="match_parent"
android:layout_height="wrap_content"
android:text="@string/lorem_ipsum"
android:padding="16dp" />
</ScrollView>
<ProgressBar android:id="@+id/loading_spinner"
style="?android:progressBarStyleLarge"
android:layout_width="wrap_content"
android:layout_height="wrap_content"
android:layout_gravity="center" />
</FrameLayout>
从网络调用中获取数据后,隐藏ProgressBar
并显示您的数据。
于 2016-03-02T18:01:10.367 回答