I want to bind some extra data with a view. I am using tag in my xml file to add the extra information.
If the data is only String (android:tag="extra Info"), i am able to get the extra data by using getTag() in code.
But i want to bind multiple data as object to a view, for that i am setting an array as tag.
When i tried to set android:tag="@array/xyz_array", I am still getting a String object instead of an array from getTag().
Can any body tell me, if i am doing something wrong ??