@Override
 public void onBackPressed() {
   if (triger == null) {
     Lifecycle.runFindMatchesActivity(MatchViewActivity.this);
     finish();
   } else Lifecycle.runPingsActivity(MatchViewActivity.this, currentUserGeoPoint);
 }
 @Override
 public void onClick(View view) {
   // Start send message activity
   Lifecycle.runSendMessageActivity(
       MatchViewActivity.this, currentUserGeoPoint, targetUserGeoPoint);
 }