根据 LAN 线程中收集的数据更新 UI?

发布于 2024-10-29 23:49:00 字数 133 浏览 1 评论 0原文

我有一个线程查看 LAN 并收集用于更新 ListView 的数据。 问题是我无法从 UI 之外的线程更新 ListView。 用户按下一个键,向 LAN 上的服务器发出查询,然后期望 ListView 显示数据。 进行 LAN 监控的最佳方法是什么?

I have a thread that looks at the LAN and gathers data used to update a ListView.
Problem is that I cannot update ListView from a thread other than the UI.
The user pressed a key which fires off a query to a server on the LAN, then expects a ListView to show the data.
What's the best way to do this LAN monitoring?

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

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

发布评论

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

评论(1

微凉徒眸意 2024-11-05 23:49:00

如果我正确理解你的问题,你会想要这样的东西:

final Handler mHandler = new Handler();
final Runnable mUpdateResults = new Runnable() {
    public void run() {
        updateUI();
    }
};

private void getLAN() {
    Thread t = new Thread() {
        public void run() {
            //do LAN stuff
            mHandler.post(mUpdateResults);
        }
    };
    t.start();
}

private void updateUI() {
    //update UI
}

If I understand your question correctly, you would want something like this:

final Handler mHandler = new Handler();
final Runnable mUpdateResults = new Runnable() {
    public void run() {
        updateUI();
    }
};

private void getLAN() {
    Thread t = new Thread() {
        public void run() {
            //do LAN stuff
            mHandler.post(mUpdateResults);
        }
    };
    t.start();
}

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