Android: How to get the area size of a drawn path?
问题 My problem is to measure the surface area of a path. I generate a random Path and draw it on a canvas. After touching on this closen path, i want to get the area size of this drawn path. How can i get the real area size of this path? The pathes (shapes) looks like this here: link to the image 回答1: I found a solution. I generate a Region from the path and use a RegionIterator to get Rects inside the Region. With this Rects i can calculate the whole area of the path. private void calculateArea