このメソッドは 0 を返し続けます。開発者ドキュメントによると、デバイスが Google Play の最新バージョンを取得した場合、このメソッドは SUCCES のようなものを返す必要があります。誰もこれを使用する方法を知っていますか?
@Override
    public void onResume() {
        super.onResume();
        GooglePlayServicesUtil.isGooglePlayServicesAvailable(getApplicationContext());
        System.out.println("henkie: " + GooglePlayServicesUtil.isGooglePlayServicesAvailable(getApplicationContext()));
    }