読み込み中にImageViewで「アニメーションサークル」を使用する


219

私のアプリケーションでは現在、表示に1秒程度かかる可能性があるリストビューを使用しています。

私が現在行っていることは、リストビューの@ id / android:emptyプロパティを使用して「読み込み」テキストを作成することです。

 <TextView android:id="@id/android:empty"
           android:layout_width="match_parent"
           android:layout_height="match_parent"
           android:background="#FF0000"
           android:text="Loading..."/>

今、私はそれをこのテキストの代わりに読み込みダイアログで使用されるアニメーション化された円に置き換えたいと思います、私はあなたが私が何を意味するか知っていると思います:

編集:ダイアログは必要ありません。私はそれを私のレイアウトの中に示したいです。

http://flexfwd.com/DesktopModules/ATI_Base/resources/images/loading_blue_circle.gif

あなたの助けに感謝します!

回答:


443

このxmlのブロックをアクティビティレイアウトファイルに配置するだけです。

<RelativeLayout
    android:id="@+id/loadingPanel"
    android:layout_width="match_parent"
    android:layout_height="match_parent"
    android:gravity="center" >

    <ProgressBar
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:indeterminate="true" />
</RelativeLayout>

読み込みが完了したら、次の1行を呼び出します。

findViewById(R.id.loadingPanel).setVisibility(View.GONE);

結果(そして回転します):

ここに画像の説明を入力してください


17
+1ボタンを壊した
TSR

これにより、ImageViewでアニメーション化された円が表示される問題がどのように解決されるかはわかりません。
グスタボ

4
@Gustavo、これは彼が「不確定な進行アニメーション」を表示したいので、問題を解決すると思います。;-]
Thalis Vilela 2017

143

これを行うには、次のxmlを使用します

<RelativeLayout
    style="@style/GenericProgressBackground"
    android:id="@+id/loadingPanel"
    >
    <ProgressBar
        style="@style/GenericProgressIndicator"/>
</RelativeLayout>

このスタイルで

<style name="GenericProgressBackground" parent="android:Theme">
    <item name="android:layout_width">fill_parent</item>    
    <item name="android:layout_height">fill_parent</item>
    <item name="android:background">#DD111111</item>    
    <item name="android:gravity">center</item>  
</style>
<style name="GenericProgressIndicator" parent="@android:style/Widget.ProgressBar.Small">
    <item name="android:layout_width">wrap_content</item>
    <item name="android:layout_height">wrap_content</item>
    <item name="android:indeterminate">true</item> 
</style>

これを使用するには、可視性の値をGONEに設定してUI要素を非表示にし、データが読み込まれるたびsetVisibility(View.VISIBLE)にすべてのビューを呼び出してそれらを復元する必要があります。findViewById(R.id.loadingPanel).setVisiblity(View.GONE)読み込みアニメーションを非表示にするために呼び出すことを忘れないでください。

ロードイベント/関数がないが、x秒後にロードパネルを非表示にする場合は、ハンドルを使用して非表示/表示をトリガーします。


4
すばらしい答えです。Google検索で見つかり、問題も解決しました。ありがとう!
デイブ

このメソッドを使用findViewById(...).setVisibility(View.GONE)すると、画面を回転したときにラインでNullPointerExceptionが発生します。一方向で魅力のように機能しますが、なぜこれが壊れているのでしょうか?
Kalina 2012

質問があります。私のRelativeLayoutは、線形レイアウト内の2つのボタンの間にあり、ボタンの間にもあります。これを実行すると、画面全体が占有されます。この読み込みバーを2つのボタンの間に配置するためのヒントはありますか?
Alioo 2013

さて、findViewById(R.id.loadingPanel).setVisiblity(View.GONE)2番目のアクティビティのどこにコードを配置すればよいですか?2番目のフラグメントアクティビティviewにはsetContnetView()メソッドがないため、これを見つけることができません。ありがとう!
Alston、2014

10

これは一般に、不確定プログレスバーまたは不確定プログレスダイアログと呼ばれます。

これをスレッドハンドラーと組み合わせて、必要なものを正確に取得します。これをGoogle経由で、またはSOで実行する方法の例がいくつかあります。時間をかけてこのクラスの組み合わせを使用してこのようなタスクを実行する方法を学ぶことを強くお勧めします。これは、多くのタイプのアプリケーションにわたって非常に役立ち、スレッドとハンドラーがどのように連携するかについての優れた洞察を提供します。

これがどのように機能するかを説明します。

loadingイベントはダイアログを開始します:

//maybe in onCreate
showDialog(MY_LOADING_DIALOG);
fooThread = new FooThread(handler);
fooThread.start();

今、スレッドは仕事をします:

private class FooThread extends Thread {
    Handler mHandler;

    FooThread(Handler h) {
        mHandler = h;
    }

    public void run() { 
        //Do all my work here....you might need a loop for this

        Message msg = mHandler.obtainMessage();
        Bundle b = new Bundle();                
        b.putInt("state", 1);   
        msg.setData(b);
        mHandler.sendMessage(msg);
    }
}

最後に、完了時にスレッドから状態を取得します。

final Handler handler = new Handler() {
    public void handleMessage(Message msg) {
        int state = msg.getData().getInt("state");
        if (state == 1){
            dismissDialog(MY_LOADING_DIALOG);
            removeDialog(MY_LOADING_DIALOG);
        }
    }
};

2
あなたの答えは本当に良さそうですが、私はそれを私のレイアウトの中に挿入したいと思います... Venkateshの答えは私の使用により適しているようです。フィードバックを送ってみます。お時間をいただき、ありがとうございました!
Waza_Be

これのおかげで、XMLとプログラムによる方法の両方の解決策があるのは実際に良いことです。
ネオンワージ2015

1

進行状況を示すためだけに別のビューを膨らませたくない場合は、次のようにします。

  1. リストビューと同じXMLレイアウトでProgressBarを作成します。
  2. 中央揃えにする
  3. IDを付けます
  4. setEmptyViewを呼び出して、リストビューインスタンス変数にアタッチします。

Androidがプログレスバーの表示を管理します。

例えば、中activity_main.xml

    <?xml version="1.0" encoding="utf-8"?>
<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"
    android:orientation="vertical"
    tools:context="com.fcchyd.linkletandroid.MainActivity">

    <ListView
        android:id="@+id/list_view_xml"
        android:layout_width="match_parent"
        android:layout_height="match_parent"
        android:divider="@color/colorDivider"
        android:dividerHeight="1dp" />

   <ProgressBar
        android:id="@+id/loading_progress_xml"
        style="?android:attr/progress"
        android:layout_width="wrap_content"
        android:layout_height="wrap_content"
        android:layout_centerHorizontal="true"
        android:layout_centerVertical="true" />

</RelativeLayout>

そしてでMainActivity.java

package com.fcchyd.linkletandroid;

import android.os.Bundle;
import android.support.v7.app.AppCompatActivity;
import android.util.Log;
import android.widget.ArrayAdapter;
import android.widget.ListView;

import java.util.ArrayList;
import java.util.List;

import retrofit2.Call;
import retrofit2.Callback;
import retrofit2.Response;
import retrofit2.Retrofit;
import retrofit2.converter.gson.GsonConverterFactory;

public class MainActivity extends AppCompatActivity {

final String debugLogHeader = "Linklet Debug Message";
Call<Links> call;
List<Link> arraylistLink;
ListView linksListV;

@Override
protected void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    setContentView(R.layout.activity_main);

    linksListV = (ListView) findViewById(R.id.list_view_xml);
    linksListV.setEmptyView(findViewById(R.id.loading_progress_xml));
    arraylistLink = new ArrayList<>();

    Retrofit retrofit = new Retrofit.Builder()
            .baseUrl("https://api.links.linklet.ml")
            .addConverterFactory(GsonConverterFactory
                    .create())
            .build();

    HttpsInterface HttpsInterface = retrofit
            .create(HttpsInterface.class);

    call = HttpsInterface.httpGETpageNumber(1);

    call.enqueue(new Callback<Links>() {
        @Override
        public void onResponse(Call<Links> call, Response<Links> response) {
            try {
                arraylistLink = response.body().getLinks();

                String[] simpletTitlesArray = new String[arraylistLink.size()];
                for (int i = 0; i < simpletTitlesArray.length; i++) {
                    simpletTitlesArray[i] = arraylistLink.get(i).getTitle();
                }
                ArrayAdapter<String> simpleAdapter = new ArrayAdapter<>(MainActivity.this, android.R.layout.simple_list_item_1, simpletTitlesArray);
                linksListV.setAdapter(simpleAdapter);
            } catch (Exception e) {
                Log.e("erro", "" + e);
            }
        }

        @Override
        public void onFailure(Call<Links> call, Throwable t) {

        }
    });


}

}


ProgressBarはRelativeLayout内の2番目のスポットに配置する必要があります。そうでない場合は、2番目のスポットのビュー(myのImageViewとあなたのケースではListView)の後ろにレンダリングされます
Dominikus K.

1

このコードは、firebase githubサンプルから使用できます。

レイアウトファイルで編集する必要はありません。新しいクラス「BaseActivity」を作成するだけです。

package com.example;

import android.app.ProgressDialog;
import android.support.annotation.VisibleForTesting;
import android.support.v7.app.AppCompatActivity;


public class BaseActivity extends AppCompatActivity {

    @VisibleForTesting
    public ProgressDialog mProgressDialog;

    public void showProgressDialog() {
        if (mProgressDialog == null) {
            mProgressDialog = new ProgressDialog(this);
            mProgressDialog.setMessage("Loading ...");
            mProgressDialog.setIndeterminate(true);
        }

        mProgressDialog.show();
    }


    public void hideProgressDialog() {
        if (mProgressDialog != null && mProgressDialog.isShowing()) {
            mProgressDialog.dismiss();
        }
    }

    @Override
    public void onStop() {
        super.onStop();
        hideProgressDialog();
    }

}

アクティビティで、進行状況ダイアログを使用する...

public class MyActivity extends BaseActivity

時間がかかる機能の前後

showProgressDialog();
.... my code that take some time
showProgressDialog();

0

Kotlinで開発しているもののために、Ankoライブラリーによって提供される、ProgressDialog風を表示するプロセスを実行する甘いメソッドがあります!

そのリンクに基づいて:

val dialog = progressDialog(message = "Please wait a bit…", title = "Fetching data")
dialog.show()
//....
dialog.dismiss()

進行状況ダイアログが表示され、進行状況が表示されます(init進行状況を計算するためにもパラメーターを渡す必要があります)。

indeterminateProgressDialog()終了するまで無期限にスピンサークルアニメーションを提供するメソッドもあります。

indeterminateProgressDialog("Loading...").show()

大声で叫ぶこのブログをこの溶液に私を導きました。

弊社のサイトを使用することにより、あなたは弊社のクッキーポリシーおよびプライバシーポリシーを読み、理解したものとみなされます。
Licensed under cc by-sa 3.0 with attribution required.