On iOS devices the icon UIBarButtonSystemItemAction (a rounded rectangle with an arrow coming out of the middle and bending to the top right, Google image search shows examples) is used to e.g. open a document in another application. What is the equivalent icon for Android?
On iOS devices the icon UIBarButtonSystemItemAction (a rounded rectangle with an arrow coming out
Share
The icon resource used for sharing action (which seems close to
UIBarButtonSystemItemAction) isandroid.R.drawable.ic_menu_share. Please read Pure Android to understand the conventions and design decisions you should make while porting an application from other platforms to Android.Someone has compiled a list of
android.R.drawable iconresources. You can check the available drawable resources yourselves following the tutorial here.