In Google Play Game Services on Android I have created custom achievement previews for the GUI, when tapped they should show the built in achievements intent focused on that specific achievement.
Currently, in the touch event, I am using:
Intent intent = Games.Achievements.getAchievementsIntent(getApiClient());
startActivityForResult(intent, IntentResponseCodes.ACHIEVEMENTS);
However this just shows the built in achievements GUI without the specific achievement focused.
Is it possible using intent.putExtra(...)
or some other method to show the same intent, but for a specific achievement?