加载内容时在ImageView中使用“动画圆”


219

我当前在我的应用程序中使用的列表视图可能需要一秒钟才能显示出来。

我目前正在使用列表视图的@ 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

非常感谢您的帮助!

Answers:


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>

当您完成加载后,请致电以下一行:

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

结果(它也旋转):

在此处输入图片说明


17
粉碎了+1按钮
TSR

无法看到这如何解决在ImageView中显示动画圆的问题。
古斯塔沃

4
@Gustavo,这就是他想要的,以显示“不确定的进度动画”,因此我认为它可以解决问题。;-]
塔利斯·维莱拉

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位于线性布局内部的两个按钮之间,也位于按钮之间。当我运行它时,它将占用整个屏幕。关于在两个按钮之间保留此加载栏的任何提示?
Alioo 2013年

好吧,我应该findViewById(R.id.loadingPanel).setVisiblity(View.GONE)在第二个活动中将代码放在哪里?view由于setContnetView()第二个片段活动中没有方法,因此无法找到。谢谢!
Alston 2014年

10

通常将其称为不确定进度栏或不确定进度对话框。

将此与线程处理程序结合使用,即可获得所需的确切信息。关于如何通过Google或直接在此处进行操作的例子很多。我强烈建议您花时间学习如何使用这些类的组合来执行这样的任务。它在许多类型的应用程序中都非常有用,它将使您深入了解线程和处理程序如何协同工作。

我将让您开始了解其工作原理:

加载事件将启动对话框:

//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和程序设计方式的解决方案实际上是一件好事。
霓虹灯Warge'Aug

1

如果您不希望仅为了表明进度而使其他视图膨胀,请执行以下操作:

  1. 在列表视图的相同XML布局中创建ProgressBar。
  2. 使它居中
  3. 给它一个ID
  4. 通过调用setEmptyView将其附加到listview实例变量

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内的第二个位置上,否则它将被呈现在第二个位置的View后面(我的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

对于那些在科特林发展的人,有一个 Anko提供了很好的方法,使展示过程变得ProgressDialog轻而易举!

基于该链接:

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

这将显示一个进度对话框,其中显示进度%(您还必须传递init参数以计算进度)。

还有indeterminateProgressDialog()一种方法,该方法可以无限期提供Spinning Circle动画,直到将其关闭:

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

大声疾呼这个博客,这使我找到了这个解决方案。

By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.