android divide image into sub images ,recognizing
问题 I want to divide the image into sub images and when I click on a part of the image will give me the name of the region, for example, this is my question how to recognize a region from the image, or how to divide the image into sub-images and use it in imageViews And thank you in advance 回答1: In my opinion @fractalwrench's idea is quite good for your case. Basic steps are listed below. Subclass Android ImageView . For example, MultiRegionImageView . Override its onTouchEvent method. (This