ICode9

精准搜索请尝试: 精确搜索
首页 > 其他分享> 文章详细

android – 永久绘制线条

2019-07-16 22:26:43  阅读:142  来源: 互联网

标签:android lines paint


我处于一种情况,我想在一段时间内逐一画线.我试图通过使用thread来做到这一点.但它对我没用.
目标是我有5行.这些行应该一个接一个地绘制,延迟时间为5秒.在onDraw()方法中使用Thread.sleep(5000)但是在5秒后绘制了所有行,这些行不是定期绘制的…我如何定期绘制线…

代码片段::

  public class PaintDemoActivity extends Activity {
DragView drawView;
/** Called when the activity is first created. */
@Override
public void onCreate(Bundle savedInstanceState) {
    super.onCreate(savedInstanceState);
    getWindow().setFlags(WindowManager.LayoutParams.FLAG_FULLSCREEN,
            WindowManager.LayoutParams.FLAG_FULLSCREEN);
    requestWindowFeature(Window.FEATURE_NO_TITLE);

    drawView = new DragView(this);
    setContentView(drawView);
    drawView.requestFocus();
}

}

DragView类::

     public class DragView extends View implements OnTouchListener {
     Paint paint = new Paint();
     public DragView(Context context) {
    super(context);
    setFocusable(true);
    setFocusableInTouchMode(true);

    this.setOnTouchListener(this);

    paint.setColor(Color.GREEN);
    paint.setStyle(Paint.Style.FILL);
    //paint.setStyle(Style.STROKE);
    paint.setAntiAlias(true);
}
   @Override
public void onDraw(final Canvas mCanvas) {  
    canvas.drawCircle(p.x, p.y, 5, paint);
    canvas.drawLine(60, 60, 120,60, paint);
    canvas.drawLine(60, 60, 60, 120, paint);
    canvas.drawLine(60, 120, 120, 120, paint);
    canvas.drawLine(120, 120, 120, 180, paint);
    canvas.drawLine(120, 180, 60, 180, paint);
    }
 }               

谢谢.

解决方法:

另一种方式,更通用:

public class LinesActivity extends Activity {
    DemoView demoview;
    int mCount = 0;
    int mListSize = 0;
    @Override
    public void onCreate(Bundle savedInstanceState) {
        super.onCreate(savedInstanceState);
        Paint paint = new Paint();
        paint.setColor(Color.RED);

        List<Coords> coordList = new ArrayList<Coords>();
        // Load up the coordinates
        coordList.add(new Coords(60, 60, 120, 60));
        coordList.add(new Coords(60, 60, 60, 120));
        coordList.add(new Coords(60, 120, 120, 120));
        coordList.add(new Coords(120, 120, 120, 180));
        coordList.add(new Coords(120, 180, 60, 180));
        mListSize = coordList.size();
        demoview = new DemoView(this, paint, coordList);
        setContentView(demoview);
        Timer timer = new Timer();

        timer.schedule(new TimerTask() {
            public void run() {
                mCount++;
                demoview.postInvalidate();
                Log.d("LINES", "Timer triggered");
                if (mCount >= mListSize) {
                    Log.d("LINES", "All done, cancelling timer");
                    cancel();
                }
            }
        }, 5000, 5000);

    }

    private class Coords {
        // little class to hold the coordinates
        float mSx; float mSy; float mEx; float mEy;

        public Coords(float sx, float sy, float ex, float ey) {
            mSx = sx;   mSy = sy; // start/end x/y
            mEx = ex;   mEy = ey;
        }
    }

    private class DemoView extends View {

        Paint mPaint;
        List<Coords> mcList;

        public DemoView(Context context, Paint paint, List<Coords> cList) {
            super(context);
            mPaint = paint;
            mcList = cList;
        }
        @Override
        protected void onDraw(Canvas canvas) {
            super.onDraw(canvas);
            int count = 0;
            Log.d("LINES", "mcount" + mCount);
            for (Coords c : mcList) { // draw all the lines
                if (count >= mCount)
                    break; // up to the number in mCount
                canvas.drawLine(c.mSx, c.mSy, c.mEx, c.mEy, mPaint);
                count++;
            }

        }
    }
}

标签:android,lines,paint
来源: https://codeday.me/bug/20190716/1482369.html

本站声明: 1. iCode9 技术分享网(下文简称本站)提供的所有内容,仅供技术学习、探讨和分享;
2. 关于本站的所有留言、评论、转载及引用,纯属内容发起人的个人观点,与本站观点和立场无关;
3. 关于本站的所有言论和文字,纯属内容发起人的个人观点,与本站观点和立场无关;
4. 本站文章均是网友提供,不完全保证技术分享内容的完整性、准确性、时效性、风险性和版权归属;如您发现该文章侵犯了您的权益,可联系我们第一时间进行删除;
5. 本站为非盈利性的个人网站,所有内容不会用来进行牟利,也不会利用任何形式的广告来间接获益,纯粹是为了广大技术爱好者提供技术内容和技术思想的分享性交流网站。

专注分享技术,共同学习,共同进步。侵权联系[81616952@qq.com]

Copyright (C)ICode9.com, All Rights Reserved.

ICode9版权所有