NekoX/TMessagesProj/src/main/java/org/telegram/ui/LocationActivity.java

370 lines
15 KiB
Java
Raw Normal View History

2013-10-25 17:19:00 +02:00
/*
2013-12-20 20:25:49 +01:00
* This is the source code of Telegram for Android v. 1.3.2.
2013-10-25 17:19:00 +02:00
* It is licensed under GNU GPL v. 2 or later.
* You should have received a copy of the license in this archive (see LICENSE).
*
* Copyright Nikolai Kudashov, 2013.
*/
package org.telegram.ui;
2014-08-08 12:17:06 +02:00
import android.content.Context;
2013-10-25 17:19:00 +02:00
import android.location.Location;
2014-08-08 12:17:06 +02:00
import android.location.LocationManager;
2013-10-25 17:19:00 +02:00
import android.view.LayoutInflater;
import android.view.View;
import android.view.ViewGroup;
import android.widget.TextView;
import com.google.android.gms.maps.CameraUpdate;
import com.google.android.gms.maps.CameraUpdateFactory;
import com.google.android.gms.maps.GoogleMap;
import com.google.android.gms.maps.MapView;
2013-10-25 17:19:00 +02:00
import com.google.android.gms.maps.MapsInitializer;
2013-10-25 17:19:00 +02:00
import com.google.android.gms.maps.model.BitmapDescriptorFactory;
import com.google.android.gms.maps.model.LatLng;
import com.google.android.gms.maps.model.Marker;
import com.google.android.gms.maps.model.MarkerOptions;
2014-11-17 03:44:57 +01:00
import org.telegram.android.AndroidUtilities;
import org.telegram.android.ContactsController;
import org.telegram.messenger.ApplicationLoader;
import org.telegram.messenger.FileLog;
import org.telegram.android.LocaleController;
import org.telegram.messenger.TLRPC;
import org.telegram.android.MessageObject;
import org.telegram.android.MessagesController;
import org.telegram.android.NotificationCenter;
2013-10-25 17:19:00 +02:00
import org.telegram.messenger.R;
2014-11-13 21:10:14 +01:00
import org.telegram.ui.ActionBar.ActionBar;
import org.telegram.ui.ActionBar.ActionBarMenu;
import org.telegram.ui.ActionBar.ActionBarMenuItem;
import org.telegram.ui.Components.AvatarDrawable;
import org.telegram.ui.Components.BackupImageView;
2014-11-13 21:10:14 +01:00
import org.telegram.ui.ActionBar.BaseFragment;
2013-10-25 17:19:00 +02:00
2014-08-08 12:17:06 +02:00
import java.util.List;
2013-12-26 17:46:13 +01:00
public class LocationActivity extends BaseFragment implements NotificationCenter.NotificationCenterDelegate {
2013-10-25 17:19:00 +02:00
private GoogleMap googleMap;
private TextView distanceTextView;
private Marker userMarker;
private Location myLocation;
private Location userLocation;
private MessageObject messageObject;
private BackupImageView avatarImageView;
private TextView nameTextView;
private boolean userLocationMoved = false;
private boolean firstWas = false;
private MapView mapView;
private LocationActivityDelegate delegate;
2013-10-25 17:19:00 +02:00
private final static int map_to_my_location = 1;
private final static int map_list_menu_map = 2;
private final static int map_list_menu_satellite = 3;
private final static int map_list_menu_hybrid = 4;
public interface LocationActivityDelegate {
void didSelectLocation(double latitude, double longitude);
}
2013-10-25 17:19:00 +02:00
@Override
public boolean onFragmentCreate() {
super.onFragmentCreate();
2014-06-17 17:10:02 +02:00
swipeBackEnabled = false;
NotificationCenter.getInstance().addObserver(this, NotificationCenter.closeChats);
2013-10-25 17:19:00 +02:00
if (messageObject != null) {
NotificationCenter.getInstance().addObserver(this, NotificationCenter.updateInterfaces);
2013-10-25 17:19:00 +02:00
}
return true;
}
@Override
public void onFragmentDestroy() {
super.onFragmentDestroy();
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.updateInterfaces);
NotificationCenter.getInstance().removeObserver(this, NotificationCenter.closeChats);
if (mapView != null) {
mapView.onDestroy();
}
if (avatarImageView != null) {
avatarImageView.setImageDrawable(null);
}
2013-10-25 17:19:00 +02:00
}
@Override
public View createView(LayoutInflater inflater) {
if (fragmentView == null) {
2014-11-11 23:16:17 +01:00
actionBar.setBackButtonImage(R.drawable.ic_ab_back);
2014-11-18 06:01:04 +01:00
actionBar.setAllowOverlayTitle(true);
if (messageObject != null) {
2014-11-11 23:16:17 +01:00
actionBar.setTitle(LocaleController.getString("ChatLocation", R.string.ChatLocation));
} else {
2014-11-11 23:16:17 +01:00
actionBar.setTitle(LocaleController.getString("ShareLocation", R.string.ShareLocation));
}
2013-10-25 17:19:00 +02:00
2014-11-11 23:16:17 +01:00
actionBar.setActionBarMenuOnItemClick(new ActionBar.ActionBarMenuOnItemClick() {
@Override
public void onItemClick(int id) {
if (id == -1) {
finishFragment();
} else if (id == map_list_menu_map) {
if (googleMap != null) {
googleMap.setMapType(GoogleMap.MAP_TYPE_NORMAL);
}
} else if (id == map_list_menu_satellite) {
if (googleMap != null) {
googleMap.setMapType(GoogleMap.MAP_TYPE_SATELLITE);
}
} else if (id == map_list_menu_hybrid) {
if (googleMap != null) {
googleMap.setMapType(GoogleMap.MAP_TYPE_HYBRID);
}
} else if (id == map_to_my_location) {
if (myLocation != null) {
LatLng latLng = new LatLng(myLocation.getLatitude(), myLocation.getLongitude());
if (googleMap != null) {
CameraUpdate position = CameraUpdateFactory.newLatLngZoom(latLng, googleMap.getMaxZoomLevel() - 8);
googleMap.animateCamera(position);
}
}
}
}
});
2013-10-25 17:19:00 +02:00
2014-11-11 23:16:17 +01:00
ActionBarMenu menu = actionBar.createMenu();
menu.addItem(map_to_my_location, R.drawable.ic_ab_location);
2013-10-25 17:19:00 +02:00
ActionBarMenuItem item = menu.addItem(0, R.drawable.ic_ab_other);
item.addSubItem(map_list_menu_map, LocaleController.getString("Map", R.string.Map), 0);
item.addSubItem(map_list_menu_satellite, LocaleController.getString("Satellite", R.string.Satellite), 0);
item.addSubItem(map_list_menu_hybrid, LocaleController.getString("Hybrid", R.string.Hybrid), 0);
2013-10-25 17:19:00 +02:00
if (messageObject != null) {
fragmentView = inflater.inflate(R.layout.location_view_layout, null, false);
2013-10-25 17:19:00 +02:00
} else {
fragmentView = inflater.inflate(R.layout.location_attach_layout, null, false);
2013-10-25 17:19:00 +02:00
}
avatarImageView = (BackupImageView)fragmentView.findViewById(R.id.location_avatar_view);
2014-07-20 01:31:49 +02:00
if (avatarImageView != null) {
avatarImageView.processDetach = false;
2014-11-17 03:44:57 +01:00
avatarImageView.imageReceiver.setRoundRadius(AndroidUtilities.dp(32));
2014-07-20 01:31:49 +02:00
}
2013-10-25 17:19:00 +02:00
nameTextView = (TextView)fragmentView.findViewById(R.id.location_name_label);
distanceTextView = (TextView)fragmentView.findViewById(R.id.location_distance_label);
View bottomView = fragmentView.findViewById(R.id.location_bottom_view);
TextView sendButton = (TextView) fragmentView.findViewById(R.id.location_send_button);
if (sendButton != null) {
2014-11-18 13:37:11 +01:00
sendButton.setText(LocaleController.getString("SendLocation", R.string.SendLocation).toUpperCase());
sendButton.setTypeface(AndroidUtilities.getTypeface("fonts/rmedium.ttf"));
}
2013-10-25 17:19:00 +02:00
mapView = (MapView)fragmentView.findViewById(R.id.map_view);
mapView.onCreate(null);
try {
MapsInitializer.initialize(getParentActivity());
googleMap = mapView.getMap();
} catch (Exception e) {
FileLog.e("tmessages", e);
}
if (googleMap != null) {
googleMap.setMyLocationEnabled(true);
googleMap.getUiSettings().setMyLocationButtonEnabled(false);
googleMap.getUiSettings().setZoomControlsEnabled(false);
googleMap.getUiSettings().setCompassEnabled(false);
googleMap.setOnMyLocationChangeListener(new GoogleMap.OnMyLocationChangeListener() {
@Override
public void onMyLocationChange(Location location) {
positionMarker(location);
}
});
2014-08-08 12:17:06 +02:00
myLocation = getLastLocation();
if (sendButton != null) {
userLocation = new Location("network");
userLocation.setLatitude(20.659322);
userLocation.setLongitude(-11.406250);
LatLng latLng = new LatLng(20.659322, -11.406250);
userMarker = googleMap.addMarker(new MarkerOptions().position(latLng).icon(BitmapDescriptorFactory.fromResource(R.drawable.map_pin)).draggable(true));
sendButton.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (delegate != null) {
delegate.didSelectLocation(userLocation.getLatitude(), userLocation.getLongitude());
}
finishFragment();
}
});
googleMap.setOnMarkerDragListener(new GoogleMap.OnMarkerDragListener() {
@Override
public void onMarkerDragStart(Marker marker) {
}
@Override
public void onMarkerDrag(Marker marker) {
userLocationMoved = true;
}
@Override
public void onMarkerDragEnd(Marker marker) {
LatLng latLng = marker.getPosition();
userLocation.setLatitude(latLng.latitude);
userLocation.setLongitude(latLng.longitude);
}
});
}
if (bottomView != null) {
bottomView.setOnClickListener(new View.OnClickListener() {
@Override
public void onClick(View view) {
if (userLocation != null) {
LatLng latLng = new LatLng(userLocation.getLatitude(), userLocation.getLongitude());
CameraUpdate position = CameraUpdateFactory.newLatLngZoom(latLng, googleMap.getMaxZoomLevel() - 8);
googleMap.animateCamera(position);
}
}
});
}
if (messageObject != null) {
updateUserData();
userLocation = new Location("network");
userLocation.setLatitude(messageObject.messageOwner.media.geo.lat);
userLocation.setLongitude(messageObject.messageOwner.media.geo._long);
LatLng latLng = new LatLng(userLocation.getLatitude(), userLocation.getLongitude());
userMarker = googleMap.addMarker(new MarkerOptions().position(latLng).
icon(BitmapDescriptorFactory.fromResource(R.drawable.map_pin)));
CameraUpdate position = CameraUpdateFactory.newLatLngZoom(latLng, googleMap.getMaxZoomLevel() - 8);
googleMap.moveCamera(position);
}
positionMarker(myLocation);
}
2013-10-25 17:19:00 +02:00
} else {
ViewGroup parent = (ViewGroup)fragmentView.getParent();
if (parent != null) {
parent.removeView(fragmentView);
}
}
return fragmentView;
}
2014-08-08 12:17:06 +02:00
private Location getLastLocation() {
LocationManager lm = (LocationManager) ApplicationLoader.applicationContext.getSystemService(Context.LOCATION_SERVICE);
List<String> providers = lm.getProviders(true);
Location l = null;
for (int i = providers.size() - 1; i >= 0; i--) {
l = lm.getLastKnownLocation(providers.get(i));
if (l != null) {
break;
}
}
return l;
}
2013-10-25 17:19:00 +02:00
private void updateUserData() {
if (messageObject != null && avatarImageView != null) {
int fromId = messageObject.messageOwner.from_id;
if (messageObject.isForwarded()) {
2013-10-25 17:19:00 +02:00
fromId = messageObject.messageOwner.fwd_from_id;
}
TLRPC.User user = MessagesController.getInstance().getUser(fromId);
2013-10-25 17:19:00 +02:00
if (user != null) {
TLRPC.FileLocation photo = null;
if (user.photo != null) {
photo = user.photo.photo_small;
}
avatarImageView.setImage(photo, null, new AvatarDrawable(user));
nameTextView.setText(ContactsController.formatName(user.first_name, user.last_name));
} else {
avatarImageView.setImageDrawable(null);
2013-10-25 17:19:00 +02:00
}
}
}
private void positionMarker(Location location) {
if (location == null) {
return;
}
myLocation = location;
if (messageObject != null) {
if (userLocation != null && distanceTextView != null) {
float distance = location.distanceTo(userLocation);
if (distance < 1000) {
distanceTextView.setText(String.format("%d %s", (int)(distance), LocaleController.getString("MetersAway", R.string.MetersAway)));
2013-10-25 17:19:00 +02:00
} else {
distanceTextView.setText(String.format("%.2f %s", distance / 1000.0f, LocaleController.getString("KMetersAway", R.string.KMetersAway)));
2013-10-25 17:19:00 +02:00
}
}
} else {
if (!userLocationMoved && googleMap != null) {
userLocation = location;
LatLng latLng = new LatLng(location.getLatitude(), location.getLongitude());
userMarker.setPosition(latLng);
if (firstWas) {
CameraUpdate position = CameraUpdateFactory.newLatLng(latLng);
googleMap.animateCamera(position);
} else {
firstWas = true;
CameraUpdate position = CameraUpdateFactory.newLatLngZoom(latLng, googleMap.getMaxZoomLevel() - 8);
googleMap.moveCamera(position);
}
}
}
}
public void setMessageObject(MessageObject message) {
messageObject = message;
}
2013-10-25 17:19:00 +02:00
@Override
public void didReceivedNotification(int id, Object... args) {
if (id == NotificationCenter.updateInterfaces) {
int mask = (Integer)args[0];
if ((mask & MessagesController.UPDATE_MASK_AVATAR) != 0 || (mask & MessagesController.UPDATE_MASK_NAME) != 0) {
updateUserData();
}
} else if (id == NotificationCenter.closeChats) {
2013-10-25 17:19:00 +02:00
removeSelfFromStack();
}
}
@Override
public void onPause() {
super.onPause();
if (mapView != null) {
try {
mapView.onPause();
} catch (Exception e) {
FileLog.e("tmessages", e);
}
}
}
@Override
public void onResume() {
super.onResume();
if (mapView != null) {
mapView.onResume();
}
}
@Override
public void onLowMemory() {
super.onLowMemory();
if (mapView != null) {
mapView.onLowMemory();
}
}
public void setDelegate(LocationActivityDelegate delegate) {
this.delegate = delegate;
}
2013-10-25 17:19:00 +02:00
}