I have an array of drawables that i want to send via share intent.
public Integer[] mThumbIds = {
R.drawable.ic_blue1,
R.drawable.ic_blue2,
R.drawable.ic_blue3,
R.drawable.ic_blue4,
R.drawable.ic_blue5,}
but share intent requires uris of all items that are being sent.How do i get uri of the items in this array?Is there a way to iterate through them and get uri?