Can I use the Google Play activities in full screen mode?
GoogleApiClient.Builder builder=new GoogleApiClient.Builder(this);
builder.addApi(Games.API);
builder.addScope(Games.SCOPE_GAMES);
builder.addConnectionCallbacks(this);
builder.addOnConnectionFailedListener(this);
apiClient=builder.build();
apiClient.connect();
My app uses WindowManager.LayoutParams.FLAG_FULLSCREEN but the activity that is shown by the api client shows the status bar at the top of the screen. Can I prevent this?
I tried the suggestions from
but they didn't appear to have any effect.