我有一个相当微不足道的问题,但我想我会试一试。我正在编写一个Android应用程序,我有一个从Web服务器加载的视图组表单。在互联网访问运行时,我曾经弹出一个带有进度条的对话框。如果我在标题栏中的那个漂亮的小不确定进度条上滑动,我觉得它看起来不那么笨重了。
标题栏选项看起来不那么繁忙,除了在检索过程中全部启用了表单项(textviews,button等)。然后我使用递归例程来禁用视图组中的所有视图,但这看起来又丑陋 - 灰色的文本视图(2.3.3)看起来很粗糙,尤其是焦点与橙色条围绕它的那个。如果我弹出一个进度条,底层视图看起来很好地禁用 - 后面的窗口只是慢慢变暗。从视觉的角度来看,更明显的是,当整个窗口变暗而不是面对一堆禁用的控件时,我们正在等待某些事情发生。
当进度条或其他窗口重叠在顶部时,是否可以按照与操作系统类似的方式禁用视图?这将给我两全其美。
我想另一个选择是在访问期间将视图设置为不可见,但我很好奇,因为我可以看到操作系统在我使用弹出窗口时正是我想要的。
答案 0 :(得分:0)
我想出了如何使用相对布局执行此操作,其中包含在与主视图重叠的框架布局中的进度对话框。当我进行网络获取时,我将框架布局的可见性设置为可见,背景设置为半透明,并禁用基础视图中的控件。效果很好。
<?xml version="1.0" encoding="utf-8"?>
<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
<ScrollView
android:id="@+id/itemView"
android:layout_width="fill_parent"
android:layout_height="wrap_content" >
</ScrollView>
<FrameLayout
android:id="@+id/itemProgress"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
android:background="#55000000"
android:visibility="gone"
>
<ProgressBar
style="?android:attr/progressBarStyleLarge"
android:layout_height="wrap_content"
android:layout_width="wrap_content"
android:layout_gravity="center|center_vertical"
android:indeterminateOnly="true"
/>
</FrameLayout>
</RelativeLayout>