I´ve created a costum view, and on the onDrawMethod i´ve started to draw some things. A few rects,lines, and a text.
canvas.drawText("Hello",150,150, paint);
Now, I want to change this text, after an OnTouchEvent.
My problem is, that I don´t know, how to remove the old text. At the moment my second text, which is shown after the TouchEvent, is just overlapping my old text. Should I redraw my hole view with the new text?