在android中执行插入语句时显示进度条的问题

发布于 2024-10-15 04:42:25 字数 287 浏览 3 评论 0原文

在android中执行插入语句时显示进度条的问题。尽管 调用此 try 会阻止其显示空白屏幕。执行此语句时甚至没有调用 xml。

try {
    while ((str = in.readLine()) != null) {
    try {                           
         db.execSQL(str);                   
    } catch (Exception e) {

    }
}   

谢谢, 尤瓦拉吉

Problem in showing progress bar while executing insert statement in android. While
calling this try block its showing blank screen. Not even xml is called while executing this statement.

try {
    while ((str = in.readLine()) != null) {
    try {                           
         db.execSQL(str);                   
    } catch (Exception e) {

    }
}   

Thanks,
Yuvaraj

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

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

发布评论

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

评论(3

森林很绿却致人迷途 2024-10-22 04:42:25

看起来您的代码正在 UI 线程中运行 - 因此只有在此代码运行后才会发生 UI 操作。将插入放入后台(例如通过AsyncTask)。

It looks like your code is running in the UI thread - so a UI action will only happen after this code has run. Put the insert into background (e.g. via AsyncTask).

幸福还没到 2024-10-22 04:42:25

将 AsyncTask 与 ProgressDialog 绑定使用,就像此处所做的那样。

Use AsyncTask with ProgressDialog bounded, like it is done here.

分开我的手 2024-10-22 04:42:25

请使用Handler或AsyncTask来处理后台操作

请通过以下链接

http://saeedsiam.blogspot.com/2009/02/first-look-into-android-thread.html

Kindly use Handler or AsyncTask to handle operations in background

Go through the following link

http://saeedsiam.blogspot.com/2009/02/first-look-into-android-thread.html

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