Change the position of Google Play Game Services notification on Android -
i'm using google play game services android games. there 1 game doesn't go along achievements notification. it's endless game , user have concentrate , stay focus gain more score. achievements notification cover important portion of screen annoyed user.
i see it's possible ios: https://developers.google.com/games/services/ios/achievements#changing_the_notification_location.
is there similar in android?
you can using setgravityforpopups
method games class
games.setgravityforpopups(googleapiclient apiclient, int gravity)
for example,
games.setgravityforpopups(getapiclient(), gravity.top | gravity.center_horizontal);
Comments
Post a Comment