Merge pull request #549 from neslihanturan/mapİconToNearby

Add icon to map
This commit is contained in:
Vivek Maskara 2017-05-12 13:43:56 +02:00 committed by GitHub
commit 5ef4777130
12 changed files with 12 additions and 0 deletions

View file

@ -2,6 +2,7 @@ package fr.free.nrw.commons.nearby;
import android.os.Bundle;
import android.support.v4.app.FragmentTransaction;
import android.util.Log;
import android.view.Menu;
import android.view.MenuInflater;
import android.view.MenuItem;
@ -45,6 +46,9 @@ public class NearbyActivity extends BaseActivity {
case R.id.action_refresh:
refreshView();
return true;
case R.id.action_map:
Log.d("Nearby","map is clicked");
return true;
default:
return super.onOptionsItemSelected(item);
}