How to draw filled triangle on android Canvas

前端 未结 5 551
鱼传尺愫
鱼传尺愫 2020-12-09 09:12

I have class MyView that extends View class. MyView should draw filled triangle. I drew a triangle but I cannot get it filled. This is my onDraw() method:

@O         


        
5条回答
  •  误落风尘
    2020-12-09 09:57

    I would like to point out that you should never initiialize an object from onDraw() as it gets called multiple times and leads to performance problems.

提交回复
热议问题