当 Activity 被破坏或暂停时如何恢复?

发布于 2024-11-16 12:12:57 字数 995 浏览 3 评论 0原文

好吧,这就是我想做的......

        new AsyncTask<Void, Integer, Void>(){

            @Override
        protected Void doInBackground(Void... arg0) {
            try {                 
             Thread.sleep(1000);             
            } catch (InterruptedException e) {                         
                e.printStackTrace();             
                    }            
                    return null;
            }
            @Override         
        protected void onPostExecute(Void result) {             
                    text1.setText("Nice to meet you "+name);
                    dismissDialog(typeBar);
                     }


                @Override        
        protected void onPreExecute() { 
            typeBar = 0;
        showDialog(typeBar);

        }

        }.execute((Void)null);

        }
    });
    }

问题是在我的应用程序中,textView 发生了很多变化!每次单击按钮时..我不想每次 textView 更改时都右击 AsyncTask。这将非常乏味并占用大量资源。有谁是我可以实现这个的更好方法吗?

Okay so here is what i am trying to do.....

        new AsyncTask<Void, Integer, Void>(){

            @Override
        protected Void doInBackground(Void... arg0) {
            try {                 
             Thread.sleep(1000);             
            } catch (InterruptedException e) {                         
                e.printStackTrace();             
                    }            
                    return null;
            }
            @Override         
        protected void onPostExecute(Void result) {             
                    text1.setText("Nice to meet you "+name);
                    dismissDialog(typeBar);
                     }


                @Override        
        protected void onPreExecute() { 
            typeBar = 0;
        showDialog(typeBar);

        }

        }.execute((Void)null);

        }
    });
    }

The problem is in my app the textView changes ALOT!. Every time the button is clicked..I dont want to right an AsyncTask each time the textView changes. That will be to tedious and use to much resouce. Does anyone is it a better way i can implement this?

如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。

扫码二维码加入Web技术交流群

发布评论

需要 登录 才能够评论, 你可以免费 注册 一个本站的账号。

评论(1

野鹿林 2024-11-23 12:12:58

这有点类似于我之前的帖子答案之一(相同的想法):

杀掉应用后如何保存闹钟?

This is kind of similar to one of my previous post answers (same idea):

How to save Alarm after app killing?

~没有更多了~
我们使用 Cookies 和其他技术来定制您的体验包括您的登录状态等。通过阅读我们的 隐私政策 了解更多相关信息。 单击 接受 或继续使用网站,即表示您同意使用 Cookies 和您的相关数据。
原文