1

アプリが起動されると、リストが空になるまで表示されるmain.xmlファイルから進行状況バーを膨らませます。URL からのデータがリストに入力されたら、このプログレス バーを閉じる必要があります。進行状況ダイアログを使用せずにこれを行うにはどうすればよいですか?

私のmain.xml

<RelativeLayout xmlns:android="http://schemas.android.com/apk/res/android"
    xmlns:tools="http://schemas.android.com/tools"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    tools:context=".MainActivity" >

    <ListView
        android:id="@+id/list_view_places"
        android:layout_width="fill_parent"
        android:layout_height="fill_parent"
        android:layout_weight="1"
        android:drawSelectorOnTop="false"
        android:fastScrollEnabled="true" >
    </ListView>

    <ProgressBar
        android:id="@+id/empty_progress_bar"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerInParent="true" />

</RelativeLayout>
4

3 に答える 3

9

次のようなものを試してください:

ProgressBar bar = (ProgressBar) findViewById(R.id.empty_progress_bar);
bar.setVisibility(View.GONE);
于 2013-02-13T13:19:31.073 に答える
3

リスト フラグメントを使用する場合、プログレス バーは自動的に処理されます。データが入力されると、自動的に閉じられます。

于 2013-02-13T13:25:30.023 に答える
0
Try this :
globalProgressDialog.dismissProgressDialog();
于 2018-10-29T06:17:39.477 に答える