Android : Disable Pan / Zoom Functionality Of A MapView?
Sep 1, 2010
How can i disable the panning/zooming functionality of a MapView (not the zoom controls, i want a wholly static map)?
I've also noticed that touching the map doesn't seem to trigger the MapView onClickListener, could anyone elaborate why?
View 1 Replies
May 27, 2010
I have made an Android app that shows a MapView with two overlays, one MyLocationOverlay and one custom overlay. I am programmatically zooming and panning to what I want the map to show. It also auto pans to my current location. The auto pan is moving the map away from what I want to show.
So my question is simply: How can I disable the auto pan?
View 1 Replies
View Related
Apr 15, 2010
I just wanted to know if there is some kind of class to use the multitouch features of android 2.1. Specifically I am trying to implement pinch-zoom and was wondering if I always have to measure the distance between two touch events and calculate the zoom level on my own?
View 4 Replies
View Related
Aug 26, 2010
I have 5 pins added to a map. How can I tell the MapView to zoom as much as possible and keep all pins in view?
---I found it:
http://sdhillon.com/find-the-center-and-span-of-a-set-of-points-android-and-iphone-example/
View 3 Replies
View Related
May 28, 2009
Is there a way to always show the zoom controls on a MapView? I have added the zoom controls using code...
]
but the zoom controls fade in and out. I want them to always be visible.
View 2 Replies
View Related
Nov 10, 2010
Is there a way i can set a minimum zoon level for my MapView?. I don't know if you've realized the map looks really ugly when zoom level is one. You see the whole world map replicated. I would like to avoid that zoom level no matter if user is zooming in through gestures or zoom controls. I've looked at different alternatives, but none seems to work. Does somebody have a good idea about this?
View 2 Replies
View Related
Jan 31, 2010
I have been trying to get this seemingly simple problem fixed for about half a day now. I have a working MapView and I just want to show the default zoom keys and have them there all the time. They do not appear at all - it's not that they appear then go away.
Code...
I have tried commenting out the setZoom and tried moving the setBuiltInZoom controls to the updateLocation method. I've found a lot of posts in relation to this problem but none that solve it.
View 2 Replies
View Related
Jul 24, 2009
Are the following actions possible using the latest version of the Android API?:
Temporarily disable sending text messages
Temporarily disable receiving text messages
*Ideally, I would intercept them and queue them up for later delivery.
Temporarily disable incoming calls except from certain phone numbers
Temporarily disable outgoing calls except to certain phone numbers
View 1 Replies
View Related
Sep 13, 2010
When a user clicks in an input field or textarea, the application zooms in.Is there a simple way to disable it?Everything looks great till I look at it on a device with Android 2.2. Specifically HTC Evo 4G.
View 2 Replies
View Related
Aug 11, 2010
I'm building a mobile site and have the following meta tag set in the header:
<meta name="viewport" content="width=device-width, initial-scale=1.0, maximum-scale=1.0, user-scalable=no" />
Unfortunately, this isn't working on HTC devices (HTC Hero, etc) with Android 2.1. Any ideas on how I can disable pinch-to-zoom in this browser? Works fine on the iPhone.
View 6 Replies
View Related
May 14, 2013
I have the Nexus 7 and S4, and on both setups, there is 1 really annoying feature: triple tapping/clicking anywhere on the screen will create a "zoom" on the screen. How can i disable this? NonRooted on both.
Turn off Magnification gestures in accessibility
View 1 Replies
View Related
Apr 11, 2010
Between pinch and tap zooming, the zoom buttons are now just in my way. Is there a way to disable them?
View 4 Replies
View Related
Sep 16, 2010
Coming from an iPhone to the Fascinate, I've noticed that the pinch to zoom feature in the browser auto-fits the text after the zoom in. On my iPhone that didn't happen. I can see where auto-fit would come in handy, but there are times I don't want the layout of the site to change. I just want to zoom it a little - I'll happily finger scroll to the left, right, up, or down to read something.
Is there a way to disable the auto-fit on the zoom-in for the stock browser? I know there are other browsers out there, but I'm asking about the stock browser.
Perhaps this is a feature coming in 2.2?
View 3 Replies
View Related
Jul 16, 2010
I had found a lot of stackoverflow post about save an Activity and the reload it.
My question: How can I have an Activity with an MapView and after reload the same mapview?
What is the best way to switch between activity and views?
View 2 Replies
View Related
Jul 14, 2009
Is Zooming is possible to do in android for Image view.I have a images in full screen view, i need to zoom in and zoom out for that images present in image view.Can any body give me suggestions regarding this.
View 19 Replies
View Related
Jul 28, 2010
I want to know how we can zoom a image that is in ImageView.
View 3 Replies
View Related
Nov 22, 2010
I come from using a blackberry and am now using the samsun fascinate. I have my work email set up but one thing i haven't found the ability to do is to perform a search for my emails. On my blackberry I was able to search by subject, person's name and read/unread and i was looking to do the same thing but i have not found where i can do that or an app that will assist me with this.
View 2 Replies
View Related
Sep 10, 2010
I'm getting more and more requests about being able to use an App to SD feature that must be part of Android 2.2, but I really have no experience with it. I also don't know where to find any documentation regarding how to make my apps compatible with this feature. People have told me my apps cannot be moved to the SD card. My mind is also telling me that this is a really bad idea for paid apps that don't have license protection of any kind. Has anyone had any experience with this, know of any documentation, or have any tips regarding what would stop an app from being compatible with this feature?
View 3 Replies
View Related
Oct 28, 2010
First, I'm new to Java and Android Development so I hope you're patient with me :)
My aim in my first app is to establish an ssh-connection to my linux machine running openssh and sending commands to it on the one hand and receiving stdout on the other hand.
Since there is an app for doing all the ssh that absolutely benefit to my needs, (connectbot) I thought it would be the best not reinventing the wheel and using connectbot for sending commands.
As I read there is a general mechanism in android to do so called intents. And I found that connectbot seems to offer such intents, but I don't feel able to use them at the moment and I'm not quite sure if it it works that way in general:
http://www.openintents.org/en/node/102
As I said I'm new to Java and android and only did a few hello world examples using these great xtensivearts video tutorials:
So its a bit hard for me to get started the right way. What do I want to do exactly?
Simply onpressbutton in my app -> sending a certain command in the background to the ssh-connected machine via connectbot or anything that can provide that.
In further development I would like to get data from the ssh-connected machine (stdout would be enough due to I could handle the output server-sided)
All this has to take place in the activity of my app. Even username and password should be configured via the settings of my app.
It simply should use the basic features of ssh via connectbot.
I would be really happy if you could help me getting started right with this issue. I know it sounds a bit hard for the first app but I really need ssh in my app cause it would greatly facilitate the server sided development.
View 3 Replies
View Related
Jun 5, 2010
My first smartphone was the first generation iPhone which I still use to this day. With the release of the EVO 4G and the coming release of the 4th generation iPhone, I am excited by the choices I have.
Let me explain: I love how the GPS works on my friends 3GS iPhone. I love the way you can find yourself on the map and the little dot moves along the street with you.
Questions:
1.) Does the EVO 4G have a function like that?
2.) The only Youtube videos I can find regarding the EVO 4G's GPS function are all related to driving. Can anyone link me to a video of a person using GPS while walking around?
3.) I would like your opinions regarding the EVO 4G's GPS functionality.
In closing: I will be honest here, if the GPS experience on the EVO 4G is not as sexy as on the iPhone, I probably will end up purchasing the iPhone. I will admit though, the EVO 4G sure is a powerhouse of a smart-phone.
View 5 Replies
View Related
Nov 21, 2009
The things that sometimes a brute force shake would be most helpful for and that I would pay money to have my phone do:
1. Shake to full brightness. When it's too bright to see the screen, it's a PITA to try to get the brightness turned up.
2. Shake to current phone call. Occasionally, I exit the phone app and it's frustrating not to be able to hop back over there quickly.
3. Shake to unlock. It's annoying to always be swiping when I just want to quickly check something on my phone. A quick shake would be much easier as an option.
View 15 Replies
View Related
Jul 11, 2010
Anyone know of any libs for Collections that are similar to iOS NSPredicate? The NSPredicate classes allow you to specify SQL-like filtering rules which can be applied to collections of object, other collections, etc., to retrieve filtered results.
View 4 Replies
View Related
Jul 2, 2010
how to achieve the "scroll past top" functionality that you see in some apps (like the HTC Sense email app for example) where when you scroll up to the top of the list and try to scroll up past that, it appears to pull down, and when you release it springs back up?
View 1 Replies
View Related
Jul 31, 2010
Can any version of Android support simultaneous connections on both a mobile network (e.g. 3G) and a WiFi network? Here's the requirement: I want to connect to a local Wifi network of sensors/devices that is not connected to the Internet, and be able to transmit data to an Internet-connected web server. Obviously quite easy to do on virtually any platform in Java, but it seems that Android does not allow multiple networks/radios to be active at a time. Big flaw, IMO. Should be a configurable option to allow that. With Froyo and mobile hot spot functionality, clearly it is *technically* possible to do, but I don't want to be the Wifi "host", but rather, a "connected client" to another Wifi network, and then do web requests over the 3G network.
View 4 Replies
View Related
Feb 20, 2009
I want applications to check whether hardware supports touch, single touch or multitouch. Based on that applications should enable different behaviors.
View 2 Replies
View Related
Oct 14, 2009
I know this question was asked couple of times in this list, but I haven't found any answer in archives, and last time this subject was debated almost a year ago. Does anyone knows is it now possible to somehow extend contacts functionality (for example: add custom field for VoIP phone number in which case user can use it to start custom activity for voip)? What are Contacts.ExtensionsColumns for?
View 7 Replies
View Related
Sep 21, 2010
greetings, We are trying to produce a custom communication product that is based on android 2.2 source tree. This product has only one physical button (will be assigned as Home). Is there a way to override the functionality of this Home button so it can pop-up three button activity that simulates the actual Back, Menu and Home button on a regular android phone. Is there any specific configuration when compiling the 2.2 source tree to achieve the desired behavior without modifying the source code? If not, can anyone please provide some hints on how or which portion of the source to modify?
View 3 Replies
View Related
Apr 5, 2010
I want to put "Go" button in android application softkeyboard for search and other related scenarios can any one guide me how to achieve this? with example.any help would be appreciated.
View 3 Replies
View Related
Jul 26, 2010
I have a Droid and accordingly, have all of the stock Google Apps which come with Vanilla android. I work in the IT department at a University, though, and we're trying to decide on policy regarding the syncing of mobile phones and the level of support which we offer to customers. Android phones have been a burden because of manufacturer customization. We've had many issues with Galaxy users, motoblur users, and especially Sense users, specifically related to syncing properly with exchange servers.I've only just realized that the manufacturer customizations are not just skins, they replaced entire apps, such as the email app, with what seems to be inferior apps. Vanilla Android, with the stock email app seems to have no trouble syncing to the exchange server. On the other hand, the Sense app, for example, will not. Instead of recommending fixes for each manufacturer, we are recommending the use of Touchdown (which is 20 dollars and it bothers me to have to recommend one of the most expensive apps in the market).I know that the stock app has no issues with Exchange sync of calendars, contacts, and email. Is there any way, on a non-rooted HTC phone for example, to replace the sense app with the stock app?Worst of all is the fact that instead of finding a resolution to the issue, the school is recommending the iPhone, stating that it is "more compatible" with the school's server. I know this isn't true and hate sending business in Apple's direction, so I'd really like to help find a resolution to this.
View 1 Replies
View Related
Sep 13, 2010
Does anybody know of a metronome app that really works well and has similar functionality to this. Tempo (Metronome with Setlist) Music App | Macworld, but of course works on our much better platform.
View 4 Replies
View Related