ActionBar

时间:2017-02-04 18:53:29

标签: android android-actionbar menu-items

我正在使用与Firebase相关联的帐户系统开发应用。

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

enter image description here

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

1 个答案:

答案 0 :(得分:0)

使用Runnable使用Thread.sleep(10);设置drawable图像。

 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();
        }
    }
}