Android :: How Fring Perform On Other Phones?
Nov 18, 2009
So far it seems solid to me but it does seem like there is a delay when calling or receiving calls via Skype on the Droid. It seems like there might be a delay when receiving messages on Skype as well. Hows it perform on other android phones?
View 3 Replies
Jun 21, 2010
Just read this post, & since I want to use Fring when I get my Captivate, I figured I'd post something here in the apps forum.
View 4 Replies
View Related
Jul 21, 2009
Given a Url for an image, I wanted to downoload it and paste it onto my canvas in android. How do I retrieve the image to my app ?
View 2 Replies
View Related
Nov 24, 2010
I am using scroller class for auto scroll of the text in edittext but after stopping the animation scrolling goes back to top of the text and i want it to stop at current position. How can i perform this task?
I am using this code for scrolling...
View 1 Replies
View Related
Oct 29, 2010
I want to use the Camera Image to get the google search results. I could not find a way to do that using Android API.
View 1 Replies
View Related
Jun 10, 2010
I have developed an Android app. Now I want to perform a few operations (i. e. - Reset the settings etc.. ) at the moment the app gets uninstalled from the phone. Is it possible to reigster a listener or a function that is called at the moment the app is removed?
View 2 Replies
View Related
Sep 24, 2010
I don't know how to elegantly solve the following task:
I have several blocks of code (operation) to execute. Each block can return true of false to indicate that further execution is possible. Inside of each block I have to use asyncronous methods calls (Because Android is completeley asynchronous).
Example of processing operations (not working now as expected):
CODE:.......
The problem is that inside of the operation I need, for example, display AlertDialog and wait for the input. But after I call dialog.show() my method execute finishes and it returns incorrect result.
Example of the button listener, registerd with AlertDialog is below:
CODE:..........
How should I modify processing of operations to support asynchronous model of Android?
View 2 Replies
View Related
Jan 22, 2010
I have done socket communication in a single application it is working fine.
But my requirement is i have opened two emulators and i am able to send sms between those two.
Now i want to run server in one emulator(myavd-5554) and client on another emulator(myavd1-5556)
I have used the following code on Serverside public class TCPServerActivity extends Activity
CODE:............................
View 2 Replies
View Related
Sep 28, 2009
I want to invoke the haptic feedback buzz when my ImageButton is pressed, but I am not sure the best way to do it. I first checked that my button was enabled for that, and isHapticFeedbackEnabled() returns true.
Then I am calling performHapticFeedback() with the constant FLAG_IGNORE_GLOBAL_SETTING, as the docs indicate that will be used to override any global settings.
The doc is a little ambiguous, but it does imply that this is something I can call at any time, so I am calling it in the OnClickListener():
CODE:..........
I appreciate that it would be better to call it when the finger first touches the button rather than on the Click event, but I wanted to get it working to start with, before refining it.
Am I barking completely up the wrong tree, or should the above work when I click on the button, because nothing happens?
View 6 Replies
View Related
Dec 18, 2009
So I'm a little confused about Skype on Android. As I understand it, it's not really running Skype at all, it's just a fancy way to call their local Skype number, which you can actually do on any cell phone, right? So you still use minutes. If you make long-distance calls, you'll also use credits. If you make local-calls, I assume you don't? And do you use credit if you make Skype-to-Skype calls? What if someone Skypes you -- do you still use credit? Second, can Fring really do real voip Skype calls? Just using my wifi and no minutes? Can I see all my Skype contacts? Can they see me?
View 4 Replies
View Related
Aug 5, 2010
I am searching for fring in the market and it is nowhere to be found. I am running the latest cm6 nightly. I also can't find the app called touchdown which is an exchange email app.
View 4 Replies
View Related
Jul 28, 2010
So now that Skype is dead for Fring, it's pretty damn useless for video calls. I was wondering though, is there a Fring app for PC? So I can call someone on my Evo (using Fring) to there PC (they're using Fring)?
View 1 Replies
View Related
Sep 5, 2010
Is there an app that lets you easily move your apps and info from an old phone to a new one?
View 5 Replies
View Related
Feb 15, 2009
I am using this code to send an email (with no errors in eclipse), but when I run it in the emulator, I get the "No applications can perform this action." error.String[] mailto = {prefemail}; // Create a new Intent to send messages Intent sendIntent = new Intent(Intent.ACTION_SEND); //Write the body of the Email String emailBody = ""; // Add attributes to the intent sendIntent.setType("message/rfc822"); endIntent.putExtra(Intent.EXTRA_EMAIL, mailto); sendIntent.putExtra(Intent.EXTRA_SUBJECT, "TrackMe Password"); sendIntent.putExtra(Intent.EXTRA_TEXT, emailBody); startActivity(Intent.createChooser(sendIntent, "Email sent.")); Do I need to install some mail app from it? I tried the K9 email app, installed it with adb, but I don't see any changes. Do I need to do something other than installing? Or is there another good program for it?
View 6 Replies
View Related
Jul 20, 2010
I cant figure out how to perform an onClick on my ListAdapter.
Here is my code:
CODE:.....................
I want to be able to click on an item from the database, then go into a view that only contains info for that item. My class currently extends ListActivity. I've tried OnItemClickListener, but I dont know what else to use to make it work.
View 1 Replies
View Related
Nov 5, 2010
I don't exactly know how android updates the applications. As far as I've read around here it keeps the SQLite database. So, imagine this scenario: one application that uses SQLite database for persisting data. After a while I release v2 which contains some database changes and I need to update user data in database. How can I make this during the update process ?
View 1 Replies
View Related
Jul 21, 2010
I am trying to find a way to goto a database located on the web perform 1 query and close the connection. I have not had any luck with finding an answer, and I really don't know how to solve this.
Internet connection is not an issue, nor is any security issues. Also this cannot be solved with an internal database and this must go across the web.
View 1 Replies
View Related
Feb 18, 2010
Working on a project to develop an application to perform OCR on English Text on an Android mobile phone.I am hoping to use an existing open source OCR engine. like tesseract for example.
View 1 Replies
View Related
May 28, 2010
I want to be able to perform live demos of an app I've been working at conferences. There doesn't seem to be an easy way to get a video feed of what's going on onscreen onto a big screen. We've hooked up the screen capture utility of DDMS and keep hitting refresh. Its not ideal. I'm aware that there are more automatic solutions that continuously cause a refresh, but these don't really provide video, and I'd also like an audio feed. I can frame grab within my app pro grammatically, but the Android SDK's video encoder only supports capturing video feed from the camera. Any ideas? What's the best way to live demo Android apps to large audiences?
View 17 Replies
View Related
Jul 31, 2009
Is there a way I can programatically perform a Fling on a listview? I know there is monkey that does all these things but that requires a computer connection with adb etc etc. I want to do it with my app on any phone, without monkey.
View 2 Replies
View Related
May 27, 2010
Is it possible to use fring to call landlines if you have a Skype phone number? ( I pay monthly for a skype number).
View 3 Replies
View Related
Jul 6, 2010
it just keeps hanging up on me. any help? it dials a 1 before the number. I tried putting a 1 n before my number in the settings but no dice.
View 11 Replies
View Related
Jun 7, 2010
Do you leave it running in the background, or only use it when needed?
View 4 Replies
View Related
Mar 30, 2009
Is Fring VOIP software compatible with Android Dev Phone 1 (AT&T provider)?
View 2 Replies
View Related
Mar 25, 2009
I would like to perform a task just before the phone is shut down. I thought that Application#onTerminate would be called but that does not seem to be the case. Is there a broadcast intent when the phone is going to shutdown? If not, how to run a task just before the phone is turned off?
View 4 Replies
View Related
Oct 22, 2010
I was wondering if it is possible to perform a trial reset for NDrive map on hTc Desire.
View 2 Replies
View Related
Jul 18, 2010
I'm working on an Android app that will send an automated response every time a text message is received. I looked around a bit on android's development site but haven't had anything that points me in the right direction. Does anyone have any ideas on where I should start with this or have any good links that might help? I am a total beginner with developing Android apps so please bear with me if I'm a little slow with this.
View 1 Replies
View Related
Aug 2, 2010
I have an application that is performing HTTP Requests (specifically calling the FogBugz API) when the user clicks certain buttons. Right now, I am just creating a service when the application starts, and then calling different methods in that service to complete requests. However, when I do this, there is the usual hang in the UI thread. I have looked at AsyncTask, but am not sure it will do what I want to accomplish. Because I need to instantly parse the XML that the HTTP Request returns, I need to have a process that is able to return this data to the UI thread. Will ASyncTask be able to accomplish this, or is there some other way.
View 1 Replies
View Related
Jun 2, 2010
I am creating a program which requires me to change a setting in the program when the video reaches specific points (at 1/3 of the video's completion, 2/3's and on completion). Android has a built in callback method for completion so performing an action at that point in time is not difficult. However, I don't know how to go about checking when the video has reached 1/3 and 2/3's of completion.
View 1 Replies
View Related
Oct 6, 2010
I was wandering whether there is a way to perform
animations between activities like you see when you press the search in google maps (it slides down from the top).
From my research I have gathered it us only possible been views. Am I missing something?
View 1 Replies
View Related