如何将加载指示符添加到AutoCompleteTextView

时间:2013-03-14 09:23:05

标签: android autocompletetextview

我想在从Web服务加载数据时在AutoCompleteTextView中显示加载指示符。优选地,它应该显示在自动完成的右侧(f.i.动画像进行中控制 - 旋转轮)。如何做到这一点?

3 个答案:

答案 0 :(得分:6)

  

我想在AutoCompleteTextView中显示加载指示器   从网络服务加载数据。

在窗口小部件的右侧放置一个带有不确定外观的ProgressBar并像这样扩展AutoCompleTextView类:

public class AutoCompleteLoadding extends AutoCompleteTextView {

    private ProgressBar mLoadingIndicator;

    public void setLoadingIndicator(ProgressBar view) {
        mLoadingIndicator = view;
    }

    @Override
    protected void performFiltering(CharSequence text, int keyCode) {
        // the AutoCompleteTextview is about to start the filtering so show
        // the ProgressPager
        mLoadingIndicator.setVisibility(View.VISIBLE);
        super.performFiltering(text, keyCode);
    }

    @Override
    public void onFilterComplete(int count) {
        // the AutoCompleteTextView has done its job and it's about to show
        // the drop down so close/hide the ProgreeBar
        mLoadingIndicator.setVisibility(View.INVISIBLE);
        super.onFilterComplete(count);
    }

}

使用ProgressBar方法将引用传递给setLoadingIndicator()。这假设您在适配器(AutoCompleteTextView)/适配器的过滤器中发出Web服务请求。

答案 1 :(得分:1)

您想使用进度条而不是微调器。使用图形视图将它们放在AutoCompleteTextView字段上并设置其ID。我设定我的进度加载。

<ProgressBar
    android:id="@+id/progressLoading"
    style="?android:attr/progressBarStyleSmall"
    android:layout_width="wrap_content"
    android:layout_height="wrap_content"
    android:layout_alignRight="@+id/autoCompleteTextViewId"
    android:layout_alignTop="@+id/autoCompleteTextViewId"
    android:paddingTop="14dip"
    android:paddingRight="10dip" />

然后在你的活动/片段中:

final ProgressBar barProgress = (ProgressBar) findViewById(R.id.progressLoading);
originProgress.setVisibility(View.GONE);

它会自动显示,因此我们最初将其设置为隐藏。然后,我们在AutoCompleteTextView上的addTextChangedListener上将其设置为VISIBLE。然后,只要完成任务,就将其设置为隐藏。

答案 2 :(得分:0)

要在AutoCompleteView中添加进度条,您可以轻松执行以下操作:

首先创建一个Custom AutoComplete类,如下所示:

public class AutoCompleteWithLoading extends AutoCompleteTextView{
    private ProgressBar mLoadingIndicator;


    public AutoCompleteWithLoading(Context context) {
        super(context);
    }

    public AutoCompleteWithLoading(Context context, AttributeSet attrs) {
        super(context, attrs);
    }

    public AutoCompleteWithLoading(Context context, AttributeSet attrs, int defStyleAttr) {
        super(context, attrs, defStyleAttr);
    }

    @TargetApi(Build.VERSION_CODES.LOLLIPOP)
    public AutoCompleteWithLoading(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes) {
        super(context, attrs, defStyleAttr, defStyleRes);
    }

    @TargetApi(Build.VERSION_CODES.N)
    public AutoCompleteWithLoading(Context context, AttributeSet attrs, int defStyleAttr, int defStyleRes, Resources.Theme popupTheme) {
        super(context, attrs, defStyleAttr, defStyleRes, popupTheme);
    }


    public void setLoadingIndicator(ProgressBar progressBar) {
        mLoadingIndicator = progressBar;
    }

    public void dispayIndicator(){
        if(mLoadingIndicator != null){
            mLoadingIndicator.setVisibility(View.VISIBLE);
        }
        this.setText("");
    }

    public void removeIndicator(){
        if(mLoadingIndicator != null){
            mLoadingIndicator.setVisibility(View.GONE);
        }
    }
}

然后,将其添加到您的XML

         <thriviastudios.com.views.view.AutoCompleteWithLoading
                android:padding="10dp"
                android:layout_margin="5dp"
                android:layout_width="match_parent"
                android:layout_height="wrap_content"
                style="@style/NotPresentationText"
                android:id="@+id/activity_activities_search_city_text_view"
                android:popupBackground="@color/app_bg"
                android:layout_centerInParent="true"
                android:background="@color/app_bg_darker"
                android:singleLine="true"
                android:hint="City"
                android:imeOptions="actionDone"
                android:textColorHint="@color/white"
                />


                <ProgressBar
                    android:id="@+id/loading_indicator"
                    style="?android:attr/progressBarStyleSmall"
                    android:layout_width="wrap_content"
                    android:layout_height="wrap_content"
                    android:layout_gravity="center_vertical|right"
                    android:layout_marginRight="20dp"
                    android:visibility="gone"/>
            </FrameLayout>

注意:使用自定义AutomComplete类的完整路径

然后,在您的Activity或片段中,您将获得对指标和AutoComplete的引用。将进度条附加到自动完成,如下所示:

city.setLoadingIndicator(indicator);

您可以在需要时进一步显示或删除指标,如下所示:

city.dispayIndicator();

city.removeIndicator();

我希望这有助于某人。