Son Forum Aktiviteleri
3Kullanıcıya ait forum aktivitesi bulunmamaktadır.
Gesture Listener
http://stackoverflow.com/questions/32948075/how-to-implement-swipe-left-right-gesture-in-a-layout-in-android-studio
Bu linkte bahsettiğin konuyla ilgili ImageView e uygulanan bir örnek var. Test etmedim ama yardımcı olabilir.
Haritanın ortasının konumu?
Bu kod işine yarayabilir;
[code]
public boolean onTouchEvent(MotionEvent event) {
int action=event.getAction();
int X = (int)event.getX();
int Y = (int)event.getY();
if(action==MotionEvent.ACTION_MOVE)
{
GeoPoint mapCenter = mapView.getProjection().fromPixels(
mapView.getWidth()/2,
mapView.getHeight()/2);
int lat = mapCenter.getLatitudeE6();
int lon = mapCenter.getLongitudeE6();
}
return true;
}
[/code]
Uygulama Güncelleme
Belki bu işine yarayabilir http://github.com/rampo/UpdateChecker