Think of it as simple as possible a tag.
What does the grocery store tag tell you? Basically, a lot of things, such as name, price, country of origin, discount and many others.
Imagine you are creating an application that displays such products in a grid using ImageView. How to easily determine product features from ImageView? Marking is one of the possible solutions.
class Product { String mName; String mManufacturer; String mOriginCountry; double mPrice; int mDiscount; int mImageId;
Of course, this is very simplified. Ideally, you will have an adapter that creates a view based on your provided tags or automatically creates your tags.
I hope you get the idea
Jitsu source share