use of de.bahnhoefe.deutschlands.bahnhofsfotos.dialogs.MapInfoFragment in project RSAndroidApp by RailwayStations.
the class MapsActivity method onOptionsItemSelected.
@Override
public boolean onOptionsItemSelected(final MenuItem item) {
if (item.getItemId() == R.id.map_info) {
final MapInfoFragment mapInfoFragment = new MapInfoFragment();
mapInfoFragment.show(getSupportFragmentManager(), "Map Info Dialog");
} else {
return super.onOptionsItemSelected(item);
}
return true;
}
Aggregations