1

我正在开发一个与 Firebase 相关联的帐户系统的应用程序。

好吧,注册过程需要几秒钟,我希望在操作栏中实现一个像这样的旋转加载图标:

在此处输入图像描述

唯一的问题是我不知道如何使菜单项旋转以及如何禁用它的 onClick 功能。

4

1 回答 1

1

用于Runnable设置可绘制对象中的图像Thread.sleep(10);

 new Thread(new Runnable() {
        @Override
        public void run() {
            stuff();
            finish();
        }
    }).start();

public void stuff(){
    for (int i=0;i<50;i+=5){ //put i< the number of images you have
        try {                //for your animation.
            Thread.sleep(10);
            //set your image here.
        } catch (InterruptedException e) {
            e.printStackTrace();
        }
    }
}
于 2017-02-04T19:08:08.427 回答