使用 Handler.post() 绘制矩形失败

发布于 2024-10-26 05:45:01 字数 980 浏览 0 评论 0原文

public class TestView extends View
{
public TestView(Context context)
    {
        super(context);
        handler=new Handler();
    }
protected void onDraw(Canvas canvas)
    {
        this.canvas=canvas;
        Thread thread=new Thread(null,new Runnable()
        {
            public void run()
            {
                    int length=32;
                    paint=new Paint();
                    paint.setColor(Color.WHITE);
//now I want to draw something.
//I use the main UI thread
                    handler.post(new Runnable()
                    {
                        public void run()
                        {
                            draw();
                        }
                    });
                }
            },"thread",262144);
            thread.start();
        }
    }
private void draw()
    {
        canvas.drawRect(length,length,length+length,length+length,paint);
    }
}

我使用 Log,它会绘制,但从不显示。 为什么?

public class TestView extends View
{
public TestView(Context context)
    {
        super(context);
        handler=new Handler();
    }
protected void onDraw(Canvas canvas)
    {
        this.canvas=canvas;
        Thread thread=new Thread(null,new Runnable()
        {
            public void run()
            {
                    int length=32;
                    paint=new Paint();
                    paint.setColor(Color.WHITE);
//now I want to draw something.
//I use the main UI thread
                    handler.post(new Runnable()
                    {
                        public void run()
                        {
                            draw();
                        }
                    });
                }
            },"thread",262144);
            thread.start();
        }
    }
private void draw()
    {
        canvas.drawRect(length,length,length+length,length+length,paint);
    }
}

I use Log,it draws,but never showes.
Why?

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

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

发布评论

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

评论(1

风苍溪 2024-11-02 05:45:02

试试这个:

    Thread thread=new Thread(null,new Runnable() {
        public void run() {
                int length=32;
                paint=new Paint();
                paint.setColor(Color.WHITE);
               //now I want to draw something.
               //I use the main UI thread
                handler.post(new Runnable() {
                    public void run() {
                        draw();
                    }
                });
            }
        },"thread",262144);
    }.start();

如果这不起作用,你能解释一下“它绘制但从不显示”。

Try this:

    Thread thread=new Thread(null,new Runnable() {
        public void run() {
                int length=32;
                paint=new Paint();
                paint.setColor(Color.WHITE);
               //now I want to draw something.
               //I use the main UI thread
                handler.post(new Runnable() {
                    public void run() {
                        draw();
                    }
                });
            }
        },"thread",262144);
    }.start();

If that doesn't work, could you explain "it draws but never shows".

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