Android :: SMS Client By Sending Messages From Computer
Apr 5, 2010
Is there any app (preferably free) that allows you to control an ERIS (android1.5)'s SMS client by sending messages from the computer while hooked up to the phone via cable. I'm just lazy and dont feel like picking up my phone half the time...
View 11 Replies
Nov 14, 2010
Prior to switching ROMs back and forth, I was able to nandroid off of my phone with no issue. Now, I cannot and at first I found it slightly alarming, but then I brushed it off. However, I feel like something might be wrong with my phone? Help?
Also, recently (as in today). My phone has been sending messages to other people, randomly. I got a phone call from my mother but it popped up as a totally different number.
View 5 Replies
View Related
Apr 7, 2010
I wish to send a list containing objects from server to client and vice versa through httpurlconnection. Elaborating the same, the list contains a set of objects which is defined both in the server and the client. Its just that the server queries a database and sends the object to the client which collects the same and displays it to the user. Please let me know if thats possible and if it is, how would I be able to accomplish that.
View 9 Replies
View Related
Jan 5, 2010
I have tried to create a android application that sends a serialzed object from the phone to a servlet the contents of the object is the input from the user which i will store in a database using hibernate.
View 3 Replies
View Related
Dec 11, 2009
So I was using my the handcent sms app on my Droid today and all a sudden the person i was sending messages to was receiving the messages 3 times. Then all a sudden when i went back to text someone else my whole thread was gone and all my messages had been deleted. Then I try using the stock messaging app and obviously all my threads are deleted but messages send twice, any suggestions?
View 6 Replies
View Related
Sep 16, 2009
There's an app for this - Droid Messenger. Only their site is down, so can't try it. Is there an alternative app? I want to be able to send texts from my computer - through the web to my phone - then out to the recipient.
View 27 Replies
View Related
May 23, 2010
I was wondering what the simplest program for sending an object from my Android phone to my computer wirelessly (via LAN) would be. I have created Java RMI programs with a server and multiple clients, so I have a grasp of the concept. However with android I'm just not sure where to start.
What I am aiming to do is send some sort of information (could simply be text) to my computer and my computer will do an action. I have the GUI interface's and the actions to be carried out all worked out, just the sending of some sort of information is getting me.
View 1 Replies
View Related
Jul 16, 2010
I am new to the Android platform, getting my Droid X yesterday. I had no trouble setting up four mailboxes, and am sending and receiving mail seamlessly.There is one bizarre thing: if I read a message on my phone, the IMAP client sets the flag on the server as 'read', but if I delete the message on the Droid it is left on the server (and all my other IMAP clients.) Has anyone noticed this? I can't find a setting that would effect this behavior.I update my mail every 15 minutes, but the problem persists even after a manual refresh.
View 5 Replies
View Related
Nov 11, 2012
I am creating an Android application. This application should send message to computer via internet and Wifi (check whether if the device is using internet). The main function is by pressing on a button in Android device a message should go to computer via internet (I don't know, but I think it should be with UDP). I know that I need to set the server for computer and write down IP and port to the android app code. I don't have any clue how to do it. I kinda need to create a computer (windows 7) server receiver, which would receive messages. I am using Eclipse Android SDK
View 1 Replies
View Related
Nov 15, 2010
i would just like to ask on how can i get the messages on my email inbox folder and display it? similarly, how can I access gmail's inbox or other mail client's inbox folder? is this possible on android?
View 2 Replies
View Related
Aug 17, 2010
So before i got the droid eris i could send picures from the computer to my verizon phone with vzw pics but now that i have the droid eris i cant do that. so does anyone know how to send pictures from the computer to the droid eris?
View 17 Replies
View Related
Mar 9, 2010
I saw a thread for an app that allows you to send delayed text messages, deliver in x number of hours, but can't recall the name. I've tried searching but haven't had any luck.
View 4 Replies
View Related
Dec 30, 2009
I've got an app that lets users send sms messages. Works great when the message < 160 characters. After that, things work less-perfectly. Seems like there are a few options here:
Manually break the message up into multiple SMSs, send each part as a separate SMS. Use the multi-part send SMS function (sendMultipartTextMessage()). Send the message as an MMS message (sendDataMessage()?).
Here's my novice take on it:
1)most well supported across carriers. Users may get mad that you just cost them N separate messages though, instead of converting to MMS or something.
2)not sure if this is supported by different carriers, and read that once the message is greater than 3 * 160 chars in length, gets converted to MMS anyway by different SMS apps - maybe stay away from this altogether.
3)not sure how to do this, and older phones might not support MMS. To send an MMS using the android SDK, do we just use the SmsManager.sendDataMessage() method?
View 2 Replies
View Related
Sep 21, 2010
I have no problem sending a file from my computer to my phone via bluetooth. However I cant seem to figure out how to send files from my phone to my computer. I tried using bluetooth file transfer from the app market but its not working.
View 2 Replies
View Related
Nov 24, 2010
I am using the xperia X10 for a while now and have just set up my emails using the supplied email client. I am using an IMAP account. Howeverever since i have set up my emails i have not been able to receive any text messages through the stock messaging client or hancent sms. Does anyone have any ideas on how to resolve this issues.
View 1 Replies
View Related
Feb 13, 2009
I do not have a device. I am testing on the emulator. When I send a message(problematically and through the device) with special characters I am not able to view them properly. For Example: When I send a message from one emulator to another say "~Ha". I see only the character "~" in the other emulator.
But when I send the same message from the DDMS, I do not see the problem. Is this a problem with the emulator or am i missing somthing. sm.sendTextMessage("5556", null, "~Ha", null, null);
View 2 Replies
View Related
Jan 14, 2010
I have G1. I write python scripts using ASE. I have to send around 1000 SMSes using SMS API in ASE. I wonder if G1 will be able to hold up-to that? moreover, how much pause (time gap/ sleep) should I give between each message sent. Some of my colleges think that its a crazy idea. I should go for GSM modem. What do you think, is this feasible enough? Can G1 enough capable? I dont have dev version.
View 4 Replies
View Related
Dec 24, 2009
What class can we use to send a text message? I tried this on the emulator, 2.0:
CODE:.............
And that works ok. On my G1 running 1.5, I get a verify error, guessing because SmsManager is not available in 1.5. Maybe for 1.5 we need to use the deprecated class?:
android.telephony.gsm.SmsManager
Is that correct, or is there some other class we're supposed to use for sending text messages?
View 1 Replies
View Related
Nov 24, 2010
I have an Android Service which copies files to an ftp server.
While it is doing that, I want to send feedback to my Activity so the user knows what happens.
I tried implementing it using the RemoteMessengerServiceSample code, but I have a problem ... All messages I send during the ftp transfer arrive at my Activity the moment the copy operation is finished ... not message by message while the copy job runs as I would like.
Is there any way to fix this? Maybe i'm using the wrong method for sending messages to my activity?
View 1 Replies
View Related
Feb 15, 2009
Is there already functionality similar to the push registry or wireless messaging API in J2ME implemented in Android? Or at least plans to do so?I have been looking at this issue for a while, because in a corporate environment it is essential to be able to push information out, or trigger actions via SMS or other connections.I have successfully sent an SMS between emulator instances, and successfully received an SMS by using a BroadcastReceiver on another emulator instance. I have also been able to use SmsManager. sendDataMessage to send a data message to a port on another emulator instance, but in this case the BroadcastReceiver is never triggered. This seems to be the closest the API's get to what I'm looking for.
View 3 Replies
View Related
Mar 11, 2009
Is there a built in activity for sending picture text messages? If so, what does the intent look like that fires it off?
View 2 Replies
View Related
Jun 1, 2009
Is there any way to send String messages from the parent Activity (running on B/g) to the subActivity (currently running)?
SubActivity is invoked using intent and startActivity(intent);
I want to open EditBox(sub activity) using this method and then update this editBox according to the process going on in the parent activity () and later want to finish() this Box when process in the parent activity completed.
View 5 Replies
View Related
Jun 6, 2010
On my Windows Mobile phone, I had this great app that let me plug my phone in to my computer then control the screen of the phone, launch apps, type text messages, etc. right from the computer screen. This made it so easy to reply to text messages without my boss knowing, or while being lazy in bed.Any type of app like this for Android? I downloaded the SDK but I can only take screenshots with it, I can't control the phone.
View 2 Replies
View Related
Jun 20, 2010
I have a few saved voicemails that I want to keep. How can I best save them to my phone or save them to my computer. Save maybe as a Mp3 or Wav file. Or even email them as an attachment?
View 6 Replies
View Related
Apr 15, 2010
Can anyone explain how to send SMS text messages on a specific application port (including Java and XML code)? If it's impossible then plz show at least how to send & receive SMS data message successfully (Java & XML) on android emulator (and not G1 or others).
View 2 Replies
View Related
May 21, 2010
I did a search on this and didn't come up with any hits for the inc.If I want to send a long message (over 160 characters) I use to be able to send as mms on my bb and it would not break the message up into seperate messages like it did on regular sms.How do I do this on the Inc? I looked for a mms option when texting and didn't find one. I am using Handcent and shapewriter for a keyboard, but also looked on the stock messaging app and didn't see one there either.
View 2 Replies
View Related
Jul 24, 2010
I lowered my resolution to VGA and i was actually able to send the video message but it took forever (and it was only a 6 second video) and then i got a text back saying that my friends phone couldnt support the file or somethin.He just got a Droid X so I dont see why it would say that and he has unlimited data.Anybody else having problems sending video messages?
View 4 Replies
View Related
Jun 10, 2010
Anyone having problems sending MMS messages via handcent? This worked fine on my HERO, but doesn't work on my Evo. I can send MMS messages via the stock messaging app, but handcent just spins and never sends the message. Normal SMS messages work fine.
View 18 Replies
View Related
Nov 23, 2010
Anyone any answers, handset has stop letting me pick recipients or sending txt messages but it will let me reply to txt.have tried reinstalling but still only works once. Tried rebooting but still nothing. I like this app but its starting to jack me off now and now either need a fix or a suitable replacement
View 6 Replies
View Related
Aug 24, 2010
I've recently got a Samsung Galaxy S.On my old Nokia, I used to be able to send and read SMS messages on the PC Sync software.Is it possible to send SMS messages from my PC via the Galaxy S, or even just via Android in general?
View 1 Replies
View Related