在AutoCompleteTextView中设置进度微调器

时间:2012-10-02 17:17:59

标签: android progressdialog

我想在AutoCompleteTextView中插入进度微调器,而另一个类执行自动完成功能。 我读到了在EditText中修复它的框架Layout,但问题是: 如何设置进度微调器?以及如何控制它?

1 个答案:

答案 0 :(得分:-2)

在要显示ProgressBar的布局中使用此选项。您可以设置可见性,View.VISIBLE,View.GONE以使其可见和不可见。

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