canvas.drawLine并不顺利

时间:2015-01-07 19:00:30

标签: android draw android-drawable

如果条件为真,我想绘制简单的线条。但是,在textview的更新之后它还没有完成。有时我应该暂停手机并重新打开它,看看线路的变化。我想要drawStep()绘制线,同时testview正在更新... 我能做些什么呢?

 ....if (condition) {
                 txSteoCounter.setText("counter"+counterr);
                 drawLine();
                }...

 private void drawLine() {
    float x1 = (float) ( x0+200 * Math.cos(Math.toRadians(-20)));
    float y1 = (float) (y0+200 * Math.sin (Math.toRadians(-20)));
    canvas.drawLine(x0, y0, x1, y1, paint);
    x0=x1;
    y0=y1;
    }

0 个答案:

没有答案