Android :: Translation App Use In Europe Without Connection?
Jul 9, 2010
I understand EVO 4G is CDMA thus can't be used roaming in European countries say in Germany (mostly GSM I believe).
Is there a way to still use "Google Translate" without connection? (is there another translation app, which can be completely downloaded to SD Card and can be used without 3g or wifi ?)
View 1 Replies
Jul 14, 2010
OK, got my EVO. Like it a-lot. We decided to take avacation to England. Checked with Sprint and was told the Evo is not able to be used in England. Even though I can't use it as a phone I thought it woud be great to use he EVO as a GPS while in England. Is there a way I to use a GPS map program without a connection, just using the GPS connection?
View 1 Replies
View Related
Sep 25, 2010
I am just going through a translation of resource files and I am wondering if there is additional support. At the moment I have both the base strings.xml and the localised version opened parallel in Eclipse. This quite works, but I am thinking of the following tools: - Showing both (or more) versions of a key together - Showing missing keys in a version - Integrating a lookup service (Google Translate, Wikipedia). I didn't find anything like this, is such a tool available?
View 3 Replies
View Related
May 21, 2010
I come from windows mobile and was very happy with iGo there, but they dont seem to have version working on nexus properly, yet, so i guess im looking for another company offering good enough navigation for Europe with proper support of nexus, any?
View 1 Replies
View Related
Apr 25, 2010
I want to know if exists a converter for a j2me source-code to android. Listen, it´s not a runner, like a midp runner for android, it ´s a converter for a source code. A tool for translate a source code for a new plataform, from j2me to android.
View 6 Replies
View Related
Aug 19, 2010
Google Translate is great, but it's crippling fault is that it needs a data connection to work. Obviously the only time I am going to need language translation tools, is the same time I don't want to pay for roaming data access!!
Are there any good (and preferably free, or minimal cost) language apps for Android that work offline? I need English > Italian initially, but the major languages would need to be supported too.
View 1 Replies
View Related
Feb 24, 2010
How can a translation service be called in an Android app? Can we have an app that can translate multiple languages into another?
View 3 Replies
View Related
Jun 23, 2010
I was able to get the animation to work on the emulator -- however my problem is that it animates for a second, but then then goes back to its original posistion right after it finishes animating. How can I stop this for happening.
This is how I animate my objects:
CODE:.................
View 2 Replies
View Related
Jun 27, 2010
Is there such a thing in Android...? For example, I'm writing an email and would like to lookup a word, but don't want to switch to the other app, is there an app which can invoke the dictionary within another app...?
View 3 Replies
View Related
Sep 15, 2010
I'll be going to Belgium and Germany next week and wondered if there is any way to use my gps in my Verizon inc while there. Does the gps work even if I am on a different cell network?
View 7 Replies
View Related
Aug 7, 2010
Ive been trying to implement a limit to prevent the user from scaling the image too much in my multitouch zoom app. Problem is, when i set the max zoom level by dumping the matrix, the image starts to translate downward once the overall scale of the image hits my limit. I believe it is doing this because the matrix is still being affected by postScale(theScaleFactorX,theScaleFactorY,myMidpointX,myMidpointY) where theScaleFactorX/Y is the amount to multiply the overall scale of the image (so if the theScaleFatorX/Y is recorded as 1.12, and the image is at .60 of its origional size, the overall zoom is now .67). It seems like some sort of math is going on thats creating this translation, and was wondering if anyone knew what it was so i can prevent it from translating, and only allow the user to zoom back out.
View 1 Replies
View Related
Aug 31, 2010
I might be completely off-base here, but I've spent the last two days trying to figure this out and, without success, you're my only hope.What I'm doing is simple:
* I have a canvas where I draw a circle with center on (10, 10), with radius = 5;
* Then, I obtain the canvas transformation matrix
* And then I create a new rectangle, I map it using the matrix and I use the canvas to draw it.
My problem: basically, the rectangle is being drawn in a different position along the Y-axis.I outputed the transformation matrix and, by default, it is translated by zero in the X-axis and by 25.0 in the Y-axis. Please note that I made NO transformations, either translate, scale or rotate. I am unable to understand why this is happening and how to avoid it.
View 3 Replies
View Related
May 3, 2010
I am traveling to Europe next month w/ my Incredible. I have Wifi in my hotel. will there be a way to use Skype or some other VOIP to call US cel phone #'s while I am there?
View 3 Replies
View Related
Apr 13, 2010
Is there any shop in Europe that has the Htc Desire in black? (unlocked of course)
Or will it arrive later?
I live in Sweden but all shops here only have the brown one...
View 16 Replies
View Related
Apr 15, 2010
Could a phone geek (that is a good thing ) tell me if the HTC Incredible has network that would work in Europe? I already ordered the Desire but I would rather buy the Incredible.
View 12 Replies
View Related
Oct 22, 2009
I am now learning how android handles linux input events from kernel raw input events to the userland level KeyEvent and so on. And I want to handle input events in native language. I've do some experiments on handling events using NDK but the touch screen events are very hard to handle(when I touch the screen, It generates a lot of kernel events).
I've read the eventhub class in framework base dir in the android source repo. And I now I know how android collects linux kernel raw events using eventhub class by reading from /dev/input/event* , but I still have no idea how it translates these raw events into the userland logic input events like KeyEvent. The file keyinput service only wrappers eventhub to JNI functions but there are no translation. So please give me some hints on the kernel event and userland event translation process.
View 3 Replies
View Related
Sep 14, 2010
I'm am working on a basic augmented reality application on Android. What I did so far is detect a square with opencv and then using cvFindExtrinsicCameraParams2() I calculated a rotation and translation vector. For this I used 4 object points, which are just the corners of a square around (0,0,0) and the 4 corners of the square in the image.
This yields me a pretty good rotation and translation matrix. I also calculated the rotation matrix with cvRodrigues2() since using this is easier than the rotation vector. As long as I use these to draw some points in the image everything works fine. My next step is however to pass these vectors and the matrix back to java and then use them with OpenGL to draw a square in an OpenGLView. The square should be exactly around the square in the image which is displayed behind the OpenGLView.
My problem is that I cannot find the correct way of using the rotation matrix and translation vector in OpenGL. I started of with exactly the same object points as used for the openCV functions. Then I applied the rotation matrix and translation vector in pretty much any possible way I could think of. Sadly none of these approaches produce a result which is anyway near what I hoped for. So my question is can anyone tell me how to use them correctly?
So far the "closest" results I have gotten, was when randomly multiplying the whole matrix with -1. But most of the time the squares still look mirror inverted or rotated for 180 degrees. So I guess it was just a lucky hit, but not the right approach.
View 1 Replies
View Related
Nov 8, 2010
I am implementing a language conversion tool, to convert Spanish to English, on a variety of smart phones: Android, BlackBerry, iPhone, Windows Phone 7.
How do I implement language conversions? Searching, I am not finding a tutorial about this, and I don't having any experience with this.
View 1 Replies
View Related
Apr 2, 2010
This summer I am going to four different countries in Europe for a vacation. I was planning on bringing my Droid to mainly take pics/videos, listen to my music, and send some texts. Maybe make 1 or 2 emergency calls and thats about it. I know we have the NATIONWIDE SELECT FAMILY SHARE SECONDARY 2100 plan, but not sure how that will carry out in Europe. I need to go into Verizon to make sure, but was hoping to get a idea of how it will work out there from here. Do I get charged out the rear for anything I do, data, texts, calls?
View 12 Replies
View Related
Aug 7, 2009
I have the HTC Magic phone from Rogers (Canada) and I just recently unlock the phone. I�m planning to go on a trip in Europe where I can buy one of those Prepaid SIM card for GSM and use it with my HTC Magic phone. Since my phone is unlocked it should work. However, I understand the phone might operate on different frequencies on Nord America vs. Europe; the big question is, can the phone support the European frequencies? I was wondering if anybody had successfully used their HTC Magic in Europe.
View 3 Replies
View Related
May 18, 2013
I have the Google Translate app on my Samsung Galaxy Tablet (running ICS) and it works great, including the offline. I also have it on my Samsung Galaxy Ace phone (running Gingerbread 2.3.7) but I cannot even see a menu option (whichis needed to use the offline facility) on the phone version. I have downloaded the latest verions from Google Play. Review of Google Translate say the offline bit shuld work with Android 2.3 and later..
View 2 Replies
View Related
Nov 26, 2010
I have just recieved my HTC Desire Z from Hong Kong and I've noticed the languages available are quite limited, especially the keyboard input which only has the Thai input option.
Is there a way I can change this or change the OS from the Asia pacific region to the Europe one?
Also, I was under the impression that the Desire Z would have the swype function. Was I mistaken as I cannot locate it?
View 11 Replies
View Related
Jan 26, 2012
I'm interested in having a Twitter app in my HTC legend in order to translate some tweets, if possible Japanese tweets.
Last year I was using TweetDeck wich translated the tweets, even from Japanese in English, but I know don't why, since september i'm unable to translate them anymore.Twitter app on Android with the translation functionality ? (To translate from Japanese if possible)
View 1 Replies
View Related
Oct 14, 2009
I'm using ThreadSafeClientConnManager to manage a pool of client connections, because my application has several threads, which are simultaneously connecting to a webserver.
Abstract sample code:
CODE:..............
Now lets say on of this threads is downloading a large file, but then the user of my application is switching to another activity/screen. Therefor the file is needless and I'd like to abort this download connection.
In ThreadSafeClientConnManager I found this method: public ClientConnectionRequest requestConnection (HttpRoute route, Object state) Returns a new ClientConnectionRequest, from which a ManagedClientConnection can be obtained or the request can be aborted.
So far I've been using:
CODE:.........
Now from what I understand, I've to use:
httpclient.getConnectionManager().requestConnection(HttpRoute route, Object state);
And that's the point where I'm stuck. I assume that for the route I can just use new HttpRoute(new HttpHost("10.0.0.1")) or whatever my server is, but what to put in for Object state?
And second, as soon as I've the ClientConnectionManager I can call getConnection(long timeout, TimeUnit tunit). But then from there, how I do I execute my HttpGet httpRequest = new HttpGet(URL_TO_FILE); as I did before with HttpResponse response = (HttpResponse) httpclient.execute(httpRequest);?
I've been gone through the documentation and tried out quite a few different things, but I wasn't able to obtain a working solution. Therefor any suggestions and/or code examples are more than welcome.
View 1 Replies
View Related
May 12, 2010
Whenever a application needs internet and connection fails, I get a message dialog
Connection failed
This application requires network access. Enable mobile network or Wi-Fi to download data.
and two buttons, Settings, Cancel.
How do I detect there is no internet connection?
How do I popup a same dialog in my application?
View 3 Replies
View Related
Oct 27, 2010
I'm coding a very basic FTP client on top of my application and I have 2 activities. The first one is the file explorer and the second one is the image viewer. Once I click on the image filename on the explorer, I want to pass the connection to the other activity to handle extra stuff. Basically, I want to keep the same org.apache.commons.net.ftp.FTPClient object (which handles the connection) alive in-between the 2 activities. I know I can't pass an object inside an intent so I don't know what my best bets are.
View 1 Replies
View Related
Jul 23, 2010
What's the technical term for being able to have voice connection and data connection simultaneously? Like AT&T was promoting heavily for a while.Apparently, the new T-Mobile Vibrant has this capability. A friend got one and was accessing the web while talking to me, double jealous now.I have benn lusting after the Verizon version, Fascinate, and wondering if there is any chance it will as well.
View 2 Replies
View Related
Sep 7, 2009
If my screen locks while I have a wifi connection, then the connection is lost when I unlock the phone.First, is this perhaps deliberate, to save power? Also, either way, when I unlock the screen and go into wifi settings, I see that the phone is trying to make a wifi connection, but it never succeeds, even though it's my home network and I'm in the same room as the router. It just states 'Obtaining address.
View 10 Replies
View Related
Sep 15, 2010
Long time reader, first time poster here. How does one know if the Epic is using the wifi connection as opposed to using the 3G connection? When wifi is connected both that and the 3G connection shows at the top. So which one is in control per se? And how can it be verified?
View 3 Replies
View Related
May 22, 2010
I rooted my German O2 Milestone using Central Europe Rom. Now on my physical keyboard the letters "Z" and "Y" are reversed. Is there any software which can fix this?
View 1 Replies
View Related