当前位置: 首页>>代码示例>>Java>>正文


Java GooglePlayServicesClient.OnConnectionFailedListener方法代码示例

本文整理汇总了Java中com.google.android.gms.common.GooglePlayServicesClient.OnConnectionFailedListener方法的典型用法代码示例。如果您正苦于以下问题:Java GooglePlayServicesClient.OnConnectionFailedListener方法的具体用法?Java GooglePlayServicesClient.OnConnectionFailedListener怎么用?Java GooglePlayServicesClient.OnConnectionFailedListener使用的例子?那么恭喜您, 这里精选的方法代码示例或许可以为您提供帮助。您也可以进一步了解该方法所在com.google.android.gms.common.GooglePlayServicesClient的用法示例。


在下文中一共展示了GooglePlayServicesClient.OnConnectionFailedListener方法的15个代码示例,这些例子默认根据受欢迎程度排序。您可以为喜欢或者感觉有用的代码点赞,您的评价将有助于系统推荐出更棒的Java代码示例。

示例1: Builder

import com.google.android.gms.common.GooglePlayServicesClient; //导入方法依赖的package包/类
public Builder(Context paramContext, GooglePlayServicesClient.ConnectionCallbacks paramConnectionCallbacks, GooglePlayServicesClient.OnConnectionFailedListener paramOnConnectionFailedListener)
{
  this.mContext = paramContext;
  this.Dz = paramConnectionCallbacks;
  this.jE = paramOnConnectionFailedListener;
  this.DA = new hv(this.mContext);
}
 
开发者ID:mmmsplay10,项目名称:QuizUpWinner,代码行数:8,代码来源:PlusClient.java

示例2: Builder

import com.google.android.gms.common.GooglePlayServicesClient; //导入方法依赖的package包/类
public Builder(Context paramContext, GooglePlayServicesClient.ConnectionCallbacks paramConnectionCallbacks, GooglePlayServicesClient.OnConnectionFailedListener paramOnConnectionFailedListener)
{
  this.mContext = paramContext;
  this.tx = paramContext.getPackageName();
  this.jD = paramConnectionCallbacks;
  this.jE = paramOnConnectionFailedListener;
}
 
开发者ID:mmmsplay10,项目名称:QuizUpWinner,代码行数:8,代码来源:GamesClient.java

示例3: Builder

import com.google.android.gms.common.GooglePlayServicesClient; //导入方法依赖的package包/类
public Builder(Context paramContext, GooglePlayServicesClient.ConnectionCallbacks paramConnectionCallbacks, GooglePlayServicesClient.OnConnectionFailedListener paramOnConnectionFailedListener)
{
  this.mContext = paramContext;
  this.jD = paramConnectionCallbacks;
  this.jE = paramOnConnectionFailedListener;
  this.jF = jC;
  this.jG = "<<default account>>";
}
 
开发者ID:mmmsplay10,项目名称:QuizUpWinner,代码行数:9,代码来源:AppStateClient.java

示例4: FusedPositionManager

import com.google.android.gms.common.GooglePlayServicesClient; //导入方法依赖的package包/类
public FusedPositionManager(Context context, final GPSCConnectionHandler gPSCConnectionHandler) {

        intentService = new Intent(context, FusedLocationService.class);
        pendingIntent = PendingIntent.getService(context, 1, intentService, 0);

        int resp = GooglePlayServicesUtil.isGooglePlayServicesAvailable(context);
        if (resp == ConnectionResult.SUCCESS) {
            locationclient = new LocationClient(context, new GooglePlayServicesClient.ConnectionCallbacks() {
                @Override
                public void onConnected(Bundle bundle) {
                    gPSCConnectionHandler.onConnected(bundle);
                }

                @Override
                public void onDisconnected() {
                    gPSCConnectionHandler.onDisconnected();
                }
            }, new GooglePlayServicesClient.OnConnectionFailedListener() {
                @Override
                public void onConnectionFailed(ConnectionResult connectionResult) {
                    gPSCConnectionHandler.onConnectionFailed(connectionResult);
                }
            }
            );
            locationclient.connect();
        } else {
            Log.e("error","googleplayservices is not available");
        }
    }
 
开发者ID:GitHK,项目名称:gpsc-location,代码行数:30,代码来源:FusedPositionManager.java

示例5: LocationTracking

import com.google.android.gms.common.GooglePlayServicesClient; //导入方法依赖的package包/类
/**
 * Subscribes for location updates
 *
 * The updates will be received with the interval INTERVAL_UPDATE (ms)
 * @param context current context
 * @param locationListener Callback
 */
public LocationTracking(final Context context, final LocationListener locationListener) {
    locationclient = new LocationClient(context, new GooglePlayServicesClient.ConnectionCallbacks() {
        @Override
        public void onConnected(Bundle bundle) {
            Toast.makeText(context, "Connected to GPS!!", Toast.LENGTH_LONG)
                    .show();

            locationclient.requestLocationUpdates(
                    LocationRequest.create().setInterval(INTERVAL_UPDATE)
                            .setPriority(LocationRequest.PRIORITY_HIGH_ACCURACY),
                    locationListener);
        }

        @Override
        public void onDisconnected() {
            Toast.makeText(context, "Disconnected from GPS!!", Toast.LENGTH_LONG)
                    .show();
        }
    }, new GooglePlayServicesClient.OnConnectionFailedListener() {
        @Override
        public void onConnectionFailed(ConnectionResult connectionResult) {
            Toast.makeText(context, "Failed to connect to GPS!!", Toast.LENGTH_LONG)
                    .show();
        }
    }
    );
    locationclient.connect();

    LocationManager locationManager = (LocationManager) context.getSystemService(Context.LOCATION_SERVICE);
    if (!locationManager.isProviderEnabled(android.location.LocationManager.GPS_PROVIDER)) {
        Toast.makeText(context,
                "Please enable gps to get a more accurate location tracking", Toast.LENGTH_LONG)
                .show();
        Intent myIntent = new Intent(Settings.ACTION_LOCATION_SOURCE_SETTINGS);
        myIntent.setFlags(Intent.FLAG_ACTIVITY_NEW_TASK);
        context.startActivity(myIntent);
    }
}
 
开发者ID:kopppa91,项目名称:ADSB-Sniffer,代码行数:46,代码来源:LocationTracking.java

示例6: ForwardConnectionFailedListener

import com.google.android.gms.common.GooglePlayServicesClient; //导入方法依赖的package包/类
public ForwardConnectionFailedListener(
        GooglePlayServicesClient.OnConnectionFailedListener listener) {
    this.listener = listener;
}
 
开发者ID:microg,项目名称:android_external_GmsLib,代码行数:5,代码来源:ForwardConnectionFailedListener.java

示例7: isConnectionFailedListenerRegistered

import com.google.android.gms.common.GooglePlayServicesClient; //导入方法依赖的package包/类
@Deprecated
public boolean isConnectionFailedListenerRegistered(GooglePlayServicesClient.OnConnectionFailedListener paramOnConnectionFailedListener)
{
  return this.Du.isConnectionFailedListenerRegistered(paramOnConnectionFailedListener);
}
 
开发者ID:mmmsplay10,项目名称:QuizUpWinner,代码行数:6,代码来源:PlusClient.java

示例8: registerConnectionFailedListener

import com.google.android.gms.common.GooglePlayServicesClient; //导入方法依赖的package包/类
@Deprecated
public void registerConnectionFailedListener(GooglePlayServicesClient.OnConnectionFailedListener paramOnConnectionFailedListener)
{
  this.Du.registerConnectionFailedListener(paramOnConnectionFailedListener);
}
 
开发者ID:mmmsplay10,项目名称:QuizUpWinner,代码行数:6,代码来源:PlusClient.java

示例9: unregisterConnectionFailedListener

import com.google.android.gms.common.GooglePlayServicesClient; //导入方法依赖的package包/类
@Deprecated
public void unregisterConnectionFailedListener(GooglePlayServicesClient.OnConnectionFailedListener paramOnConnectionFailedListener)
{
  this.Du.unregisterConnectionFailedListener(paramOnConnectionFailedListener);
}
 
开发者ID:mmmsplay10,项目名称:QuizUpWinner,代码行数:6,代码来源:PlusClient.java

示例10: isConnectionFailedListenerRegistered

import com.google.android.gms.common.GooglePlayServicesClient; //导入方法依赖的package包/类
public boolean isConnectionFailedListenerRegistered(GooglePlayServicesClient.OnConnectionFailedListener paramOnConnectionFailedListener)
{
  return this.Di.isConnectionFailedListenerRegistered(paramOnConnectionFailedListener);
}
 
开发者ID:mmmsplay10,项目名称:QuizUpWinner,代码行数:5,代码来源:PanoramaClient.java

示例11: isConnectionFailedListenerRegistered

import com.google.android.gms.common.GooglePlayServicesClient; //导入方法依赖的package包/类
@Deprecated
public final boolean isConnectionFailedListenerRegistered(GooglePlayServicesClient.OnConnectionFailedListener paramOnConnectionFailedListener)
{
  return this.te.isConnectionFailedListenerRegistered(paramOnConnectionFailedListener);
}
 
开发者ID:mmmsplay10,项目名称:QuizUpWinner,代码行数:6,代码来源:GamesClient.java

示例12: registerConnectionFailedListener

import com.google.android.gms.common.GooglePlayServicesClient; //导入方法依赖的package包/类
@Deprecated
public final void registerConnectionFailedListener(GooglePlayServicesClient.OnConnectionFailedListener paramOnConnectionFailedListener)
{
  this.te.registerConnectionFailedListener(paramOnConnectionFailedListener);
}
 
开发者ID:mmmsplay10,项目名称:QuizUpWinner,代码行数:6,代码来源:GamesClient.java

示例13: unregisterConnectionFailedListener

import com.google.android.gms.common.GooglePlayServicesClient; //导入方法依赖的package包/类
@Deprecated
public final void unregisterConnectionFailedListener(GooglePlayServicesClient.OnConnectionFailedListener paramOnConnectionFailedListener)
{
  this.te.unregisterConnectionFailedListener(paramOnConnectionFailedListener);
}
 
开发者ID:mmmsplay10,项目名称:QuizUpWinner,代码行数:6,代码来源:GamesClient.java

示例14: dw

import com.google.android.gms.common.GooglePlayServicesClient; //导入方法依赖的package包/类
protected dw(Context paramContext, GooglePlayServicesClient.ConnectionCallbacks paramConnectionCallbacks, GooglePlayServicesClient.OnConnectionFailedListener paramOnConnectionFailedListener, String[] paramArrayOfString)
{
  this(paramContext, new c(paramConnectionCallbacks), new g(paramOnConnectionFailedListener), paramArrayOfString);
}
 
开发者ID:mmmsplay10,项目名称:QuizUpWinner,代码行数:5,代码来源:dw.java

示例15: isConnectionFailedListenerRegistered

import com.google.android.gms.common.GooglePlayServicesClient; //导入方法依赖的package包/类
public boolean isConnectionFailedListenerRegistered(GooglePlayServicesClient.OnConnectionFailedListener paramOnConnectionFailedListener)
{
  return this.ne.isConnectionFailedListenerRegistered(paramOnConnectionFailedListener);
}
 
开发者ID:mmmsplay10,项目名称:QuizUpWinner,代码行数:5,代码来源:dw.java


注:本文中的com.google.android.gms.common.GooglePlayServicesClient.OnConnectionFailedListener方法示例由纯净天空整理自Github/MSDocs等开源代码及文档管理平台,相关代码片段筛选自各路编程大神贡献的开源项目,源码版权归原作者所有,传播和使用请参考对应项目的License;未经允许,请勿转载。