0

所以即時通訊全新的地理圍欄,我按照以下教程設置地理圍欄:http://io2015codelabs.appspot.com/codelabs/geofences#4如何在走進地理圍欄時烘烤簡單的信息?

代碼運行,但是當我走進地理圍欄時什麼也沒有發生......當我進入或離開地理圍欄時,我將如何烤麪包?我的代碼與指南中的完全相同。所以我希望你們能以一些例子來幫助我。我

這裏地理圍欄類:

public class GeoFence extends AppCompatActivity implements 
     GoogleApiClient.ConnectionCallbacks, 
     GoogleApiClient.OnConnectionFailedListener, 
     ResultCallback<Status> 
{ 
    protected ArrayList<Geofence> mGeofenceList; 
    protected GoogleApiClient mGoogleApiClient; 
    private Button mAddGeofencesButton; 

    @Override 
    public void onCreate(Bundle savedInstanceState) 
    { 
     super.onCreate(savedInstanceState); 
     setContentView(R.layout.activity_geo_fence); 
     mAddGeofencesButton = (Button) findViewById(R.id.add_geofences_button); 
     // Empty list for storing geofences. 
     mGeofenceList = new ArrayList<Geofence>(); 

     // Get the geofences used. Geofence data is hard coded in this sample. 
     populateGeofenceList(); 

     // Kick off the request to build GoogleApiClient. 
     buildGoogleApiClient(); 

    } 

    public void populateGeofenceList() { 
     for (Map.Entry<String, LatLng> entry : Constants.LANDMARKS.entrySet()) { 
      mGeofenceList.add(new Geofence.Builder() 
        .setRequestId(entry.getKey()) 
        .setCircularRegion(
          entry.getValue().latitude, 
          entry.getValue().longitude, 
          Constants.GEOFENCE_RADIUS_IN_METERS 
        ) 
        .setExpirationDuration(Constants.GEOFENCE_EXPIRATION_IN_MILLISECONDS) 
        .setTransitionTypes(Geofence.GEOFENCE_TRANSITION_ENTER | 
          Geofence.GEOFENCE_TRANSITION_EXIT) 
        .build()); 
     } 
    } 
    protected synchronized void buildGoogleApiClient() { 
     mGoogleApiClient = new GoogleApiClient.Builder(this) 
       .addConnectionCallbacks(this) 
       .addOnConnectionFailedListener(this) 
       .addApi(LocationServices.API) 
       .build(); 
    } 
    public void addGeofencesButtonHandler(View view) { 
     if (!mGoogleApiClient.isConnected()) { 
      Toast.makeText(this, "Google API Client not connected!", Toast.LENGTH_SHORT).show(); 
      return; 
     } 

     try { 
      LocationServices.GeofencingApi.addGeofences(
        mGoogleApiClient, 
        getGeofencingRequest(), 
        getGeofencePendingIntent() 
      ).setResultCallback(this); // Result processed in onResult(). 
     } catch (SecurityException securityException) { 
      // Catch exception generated if the app does not use ACCESS_FINE_LOCATION permission. 
     } 
    } 
    private GeofencingRequest getGeofencingRequest() { 
     GeofencingRequest.Builder builder = new GeofencingRequest.Builder(); 
     builder.setInitialTrigger(GeofencingRequest.INITIAL_TRIGGER_ENTER); 
     builder.addGeofences(mGeofenceList); 
     return builder.build(); 
    } 
    private PendingIntent getGeofencePendingIntent() { 
     Intent intent = new Intent(this, GTIS.class); 
     // We use FLAG_UPDATE_CURRENT so that we get the same pending intent back when calling addgeoFences() 
     return PendingIntent.getService(this, 0, intent, PendingIntent.FLAG_UPDATE_CURRENT); 
    } 
    @Override 
    public void onConnected(Bundle connectionHint) { 

    } 

    @Override 
    public void onConnectionFailed(ConnectionResult result) { 
     // Do something with result.getErrorCode()); 
    } 
    @Override 
    public void onConnectionSuspended(int cause) { 
     mGoogleApiClient.connect(); 
    } 
    @Override 
    protected void onStart() { 
     super.onStart(); 
     if (!mGoogleApiClient.isConnecting() || !mGoogleApiClient.isConnected()) { 
      mGoogleApiClient.connect(); 
     } 
    } 

    @Override 
    protected void onStop() { 
     super.onStop(); 
     if (mGoogleApiClient.isConnecting() || mGoogleApiClient.isConnected()) { 
      mGoogleApiClient.disconnect(); 
     } 
    } 

    public void onResult(Status status) 
    { 
     if (status.isSuccess()) { 
      Toast.makeText(
        this, 
        "Geofences Added", 
        Toast.LENGTH_SHORT 
      ).show(); 
     } else { 
      Toast.makeText(this,"No geo fence :(",Toast.LENGTH_SHORT).show(); 
     } 
    } 
} 

這裏是GeofenceTransitionsIntentService類

public class GTIS extends IntentService 
{ 
    protected static final String TAG = "GeofenceTransitionsIS"; 

    public GTIS() { 
     super(TAG); // use TAG to name the IntentService worker thread 
    } 

    @Override 
    protected void onHandleIntent(Intent intent) { 
     GeofencingEvent event = GeofencingEvent.fromIntent(intent); 
     if (event.hasError()) { 
      Log.e(TAG, "GeofencingEvent Error: " + event.getErrorCode()); 
      String description = getGeofenceTransitionDetails(event); 
      sendNotification(description); 
      return; 
     } 
    } 
    private static String getGeofenceTransitionDetails(GeofencingEvent event) { 
     String transitionString = 
       GeofenceStatusCodes.getStatusCodeString(event.getGeofenceTransition()); 
     List triggeringIDs = new ArrayList(); 
     for (Geofence geofence : event.getTriggeringGeofences()) { 
      triggeringIDs.add(geofence.getRequestId()); 
     } 
     return String.format("%s: %s", transitionString, TextUtils.join(", ", triggeringIDs)); 
    } 

    private void sendNotification(String notificationDetails) { 
     // Create an explicit content Intent that starts MainActivity. 
     Intent notificationIntent = new Intent(getApplicationContext(), Geofence.class); 

     // Get a PendingIntent containing the entire back stack. 
     TaskStackBuilder stackBuilder = TaskStackBuilder.create(this); 
     stackBuilder.addParentStack(GeoFence.class).addNextIntent(notificationIntent); 
     PendingIntent notificationPendingIntent = 
       stackBuilder.getPendingIntent(0, PendingIntent.FLAG_UPDATE_CURRENT); 

     // Get a notification builder that's compatible with platform versions >= 4 
     NotificationCompat.Builder builder = new NotificationCompat.Builder(this); 

     // Define the notification settings. 
     builder.setColor(Color.RED) 
       .setContentTitle(notificationDetails) 
       .setContentText("Click notification to return to App") 
       .setContentIntent(notificationPendingIntent) 
       .setAutoCancel(true); 

     // Fire and notify the built Notification. 
     NotificationManager notificationManager = 
       (NotificationManager) getSystemService(Context.NOTIFICATION_SERVICE); 
     notificationManager.notify(0, builder.build()); 
    } 

} 

這裏是我的常量類:

public class Constants 
{ 
    public static final long GEOFENCE_EXPIRATION_IN_MILLISECONDS = 12 * 60 * 60 * 1000; 
    public static final float GEOFENCE_RADIUS_IN_METERS = 20; 

    public static final HashMap<String, LatLng> LANDMARKS = new HashMap<String, LatLng>(); 
    static { 
     // San Francisco International Airport. 
     LANDMARKS.put("Westwood", new LatLng(34.067313, -118.461164)); //34.065767, -118.459658 LANDMARKS.put("Westwood", new LatLng(34.065767, -118.459658)); 

     // Googleplex. 
     LANDMARKS.put("Japantown", new LatLng(37.785281,-122.4296384)); 

     // Test 
     LANDMARKS.put("SFO", new LatLng(37.621313,-122.378955)); 
    } 
} 
+0

按照下一步中,並顯示在'onHandleIntent'地方敬酒。 – stkent

+0

@stkent所以我只是在onHandleIntent中寫一個簡單的Toast語句? –

+0

我的意思是我實施了onHandleIntent指南做的方式,沒有發生......? –

回答

1

指南中的代碼顯示了Notification不是Toast。它不爲你工作,因爲你調用sendNotification()這是因爲沒有錯誤發生

你需要做的是不是你的情況引發了if(event.hasError())語句中是:

@Override 
protected void onHandleIntent(Intent intent) { 
    GeofencingEvent event = GeofencingEvent.fromIntent(intent); 
    if (event.hasError()) { 
     Log.e(TAG, "GeofencingEvent Error: " + event.getErrorCode()); 
    } 
    String description = getGeofenceTransitionDetails(event); 
    sendNotification(description); 
} 

同樣,這段代碼會顯示一個Notification這將使超過Toast更多的意義在現實生活中應用這些原因:

  1. 您的應用程序甚至可能不是活躍在地理柵欄過渡和敬酒的時候正好顯示出Ô對用戶來說,任何地方都可能看起來很怪異。
  2. 的通知,您可以顯示更多的信息(標題和文本),並可能直接返回您應用
  3. 它爲用戶提供了閱讀和在他們方便

關閉它。如果你仍然希望有機會展現出Toast無論如何,你應該這樣做你會做它在Activity以同樣的方式(IntentServiceContext太):

Toast.makeText(this, description, Toast.LENGTH_LONG).show();