General :: Communicating Between Samsung S3 And Tab 10.1
Mar 23, 2013
I have recently lost my voice, and wanted to know if there was a way or an app that I can use to type on my Samsung Mobile, messages or words and transmit them to show up on my tablet? via Wi-Fi, Bluetooth. It would make my life so much easier to communicate with people next to instead of passing the mobile around.
View 2 Replies
Sep 13, 2010
For the past few weeks ive been trying to do a software update on my phone. i know 2.2 isnt available yet, but i just wanted to give it a try for sh!ts n giggles. my old captivate that i returned was able to connect to the att server and gave me a message saying that there are no updates available. the new captivate i have wont even connect to the att server. it sucks that i have to wait 24hours until i can try again. everytime ive done it, it gives me that error message. anyone else having this issue? i thought being rooted and having the one click lag fix was the problem so i undid the lag fix and unrooted, but i still got the same error message. im worried that when 2.2 is available, i wont be able to get it since i cant even connect to the att server.
View 6 Replies
View Related
Jun 11, 2012
I know that the stuff regarding the secure element inside certain phones is kept on a strictly need-to-know basis and Google only lets certain people have access, but how about the apps that are running on the phone, such as Google Wallet?
What I mean is, is it possible to write an App that communicates with something like Google Wallet (not necessarily this app specifically) instead of an NFC device? At its simplest, when you pass your phone over a credit card terminal, it communicates via the NFC chip to the wallet application. What I'm looking to do is bypass that terminal and just communicate directly with the app via another app, sending the necessary commands directly. Is this possible? (If so, I'm not looking for a how-to, just if it's doable or not).
I know it might be complicated and there's a lot to learn, APDU commands and all that - that's fine.
View 2 Replies
View Related
Jan 13, 2010
I want to create an application in Android which communicates with a server application (written in C#, doesn't matter what version of .NET) on the PC via TCP/IP. I was thinking about some kind of RPC like SOAP or XML-RPC. But I want to keep the server application as light and simple as possible. And I think in C# you rely on a Webserver to set up an RPC server. Or maybe is it better to communicate directly via the TcpListener?
View 2 Replies
View Related
Jan 20, 2010
I plugged my Hero, via USB cable, into my computer. The charge light is on but my computer is not seeing the device. I have rebooted the phone and the computer and it still won't see the device.
View 1 Replies
View Related
May 10, 2010
Whether its possible for an application and a widget to communicate data to each other directly? Basically I'd need the app to be able to check that the widget is running/visible, and would need the app to send information to the widget. I'm far from actually implementing anything yet, so I'm not really looking for any overly detailed explanations, just if whether or not what I'm looking to achieve is possible.
View 2 Replies
View Related
Apr 12, 2010
I'm fairly new to android programming and need some information for a 4th year forensics course project. Basically I am trying to create a suite of tools for live analysis of an android phone. I know how to get the information I need on the phone, but I was wondering if there was a way to communicate that information back to the PC? I want to be able to run a program from a PC, which, when the phone is docked, will allow the user to access information about the phone (ie currently running services/processes, bluetooth/wifi connections, etc). I have a bunch of methods that will run on the phone and get all the information, but I want to be able to call those methods from the PC, execute on the phone, then have the information sent back to the PC to display to the user instead of just displaying it on the phone. This is to leave as small a footprint on the phone as possible.
View 1 Replies
View Related
Oct 18, 2010
I come from a .Net background and recently x-training to java.
I wanted to develop an Android application that required simple functionality to communicate with a server. For example, functionality such as post a username/score to a website (or service), or request information such as top 10 scores.
What type of communications should I focus on? What is the common technology to use? Does Java have the equivalent of WCF? Or does it have some sort of simple web service? Can web services be secured with authentication?
Ive heard other references to xml-rpc. Should this be something I should look into?
View 3 Replies
View Related
Feb 9, 2009
I need a message queue in my background thread, so I created a looper thread.
CODE:...................
View 5 Replies
View Related
Nov 14, 2009
Here is my code:
CODE:......
The problem is as follows: progressBar is showing correctly. mHandler obtains the message but only once(for the first time). But I need to make it in loop(as Looper.loop should have worked in this case), so it calls mHandler handleMessage in every loop(but its not happening in this case). The outcome progressBar kept on rotating though the condition in the handleMessage (if(location!=null) )is getting satisfied in the mean time of the active progressbar. How can I make mHandle,sendEmptyMessage to call in each loop so I can check for this (if(location!=null)) condition.
View 3 Replies
View Related
Feb 26, 2009
Is it possible to update a currently running activity from a BroadcastReceiver? I want to update my activity from a BroadcastReceiver that runs alongside it. When I run my app (from Eclipse), my activity starts. When the BroadcastReceiver is triggered, it currently tries to start the activity (with extras in the bundle...this is the important part), but nothing happens, presumably because the activity is already running. So my question is, how do I get the new information to my Activity (or even just tell the activity that there's new information to get if I stick the information in a database)? This seems like it should be fairly straightforward, but I'm clearly missing something.
View 3 Replies
View Related
Jul 14, 2010
I am communicating with PHP web services in Android application. All the requests send from android are encoded with UTF-8 and the php scripts decodes it with utf-8.
But when any request is send with apostrophe ' the decode function of php doesn't seem to work the way it should.
For example, if I send the request as "Today's Horoscope" then its utf-8 encode will be "Today%27s+Horoscope". I tried to decode this with Android and it was successful. But in php it gives the same text after decoding.
The database is MySql. Is this a problem with database or php? I am not sure about it but is there any workaround to this problem?
View 3 Replies
View Related
Aug 29, 2010
I want to create an application to remote control my PC.
For example: Volume (get actual volume level, increase/decrease/mute volume), TVtime (start/quit tvtime, get actual channel, toggle fulscreen, channel up/down, toggle input source, toggle aspect ratio), Amarok (start/quit amarok, get current song, prev/next song, play/stop/ pause), etc.
The application for the PC is done (in python). The communication protocol used is very simple.
For example: "volume:get_level", "volume:up", "volume:mute", etc. Now I'm working on the android application.
What I have implemented till now is to create an activity, with: - an edittext to enter host:port - a button to connect/disconnect to/from server - the onCreate method creates a new thread for socket communication to send/receive messages to/from PC. - a textview to display information received from PC (eg. volume level) - a button to send command to PC I'm using handler to communicate between the tcpclient thread and the main activity.
It is working... But I want to use more than 1 activity. I want to use different activity for every program controlled. Searching for a solution to transfer the thread's handler to a new activity I have found that it is not possible, and I have to use a service.
So, my question is: how to send message from different activities to the same service, how to send message from service to the actual activity and how can I check in the service which is the actual activity? Because the service is running in the same thread as the activities I suppose that I still have to create a new thread for socket communication. How can I send the data received by the socket to the service?
View 5 Replies
View Related
Aug 14, 2010
Lets say I have 2 mobile phones which are 50 meters away from each other and I would like to send a very small packet of data from mobile-A to mobile-B, without using any communication to cellular tower. To make it simpler, I would like to build an app which implements a Peer to Peer connection for 2 mobiles in the same radius (in the same area). Is this feasible using the technology of smartphones these days?
View 2 Replies
View Related
Sep 27, 2010
I'm thinking about an Android app (with possibly an accompanying physical device), and i'm trying to figure out whether this is something that's feasible.
1) Let's say I plug my Android to my PC. Would it be possible for an app installed on the PC to communicate with an app running in the cell phone? I just need a very simplistic data exchange, it can even be one-way (just data pushed from the cell phone to the listening app on the PC, whenever the cell phone wants, I don't need any data sent from PC to phone).
When I plug it in, the phone gives me 4 options (charge, disk drive, HTC sync, tethering), which makes me think this is not doable, but still worth the shot.
2) Would it be possible for an app on the PC to talk to an app on the phone through any other way? (Wi-fi, bluetooth, etc). I'm guessing no on wi-fi since neither party has the other's IP (and I want this to kinda just work, not having to input IPs manually all the time).
3) If I make a device that's plugged to the little USB port at the bottom of the phone (and let's say this is a magical device that can do anything, I don't quite care about those details as long as it's doable). Can I have an Android app talk to that device?
4) Any other ideas to make the phone talk to a "device" that I make, or to an app in the PC are more than welcome. Going "through the web" could be an option (although there'd have to be a central server that I own as a middle man, I believe). But i'd prefer if the communication was direct between the two devices.
View 3 Replies
View Related
Jul 14, 2010
I'm just getting into Android development, and I have a question about communicating between a receiver class and an activity class. I'm very new to JAVA and Android so I hope I don't sound too stupid. I'm developing an application where I intercept an SMS message and then based on various elements of that SMS I might delete it once it's been saved to the inbox. I have a receiver class that intercepts the txt message, and I am also able to delete messages from my inbox with code in the activity class using a button at the moment. The problem I have is communicating between the receiver class and the activity class where the code to delete a message resides. I tried putting that code directly into the receiver class but as I'm sure most of you already know the BroadcastReceiver class doesn't seem to support what I need to delete messages. I've been searching for an answer to this for a while, but haven't been able to find anything. Honestly I'm not sure I know enough about JAVA and Android to even recognize a solution if I saw it.
View 2 Replies
View Related
Sep 4, 2013
rooting Samsung Galaxy Fame Duos S6812?
I've tried all the methods I could find including Motochopper,SRS root, Oneclick root, Framaroot,etc. to no avail
I even tried flashing SuperSU through Stock Recovery ( Yes! I was that desperate)
There are no custom kernels or CWM for my device.
View 5 Replies
View Related
Mar 27, 2012
S2 i777...a friend of mine bought it for me from us and i unlocked it using the code purchased from ebay..my problem is that i rooted my device to remove bloatware from the device and accidently removed samsung stock weather app(accuweather)completely..after that i unrooted my phone to stock stage as it was at the time my friend bought it but the weather app is no where to be found on my device....i tried to find for a solution to reinstall that app..i found the apk from here but when i try to install it gives me an error "Application not installed".
View 1 Replies
View Related
Nov 21, 2012
I own a Motorola XT316 and I love Samsung design. By this, I was trying to port Samsung's APKs to my phone, like Social Hub and SMS. But how I can do it?
View 4 Replies
View Related
May 5, 2013
I had a samsung Galaxy ace2 but bought a samsung S duos because I have a personal and work number and wanted to avoid carrying 2 phones.
The phone uses android 4.0.4
I cannot get the mobile data connection to run on 3g/hsdpa, it will only run on gprs and is thus very slow when I am away from a wifi connection.
I have gone to settings/more settings/mobile networks (then changed to sim1 which is my preferred data provider) and the option "use packet data" is ticked/active. The APN is, I think, correct - set to TMobile.
Still only gprs connection?
View 5 Replies
View Related
Dec 12, 2013
I just recently got myself a Samsung S 3. I am very happy with it. The only complaint I have is the reception. I found out it's because it's trying to go 4G and sometimes it does not get good reception. I later found an article that Sprint working on their 3G and 4G networks so that probably explain another reason why I don't get good reception.
So my question is, is there a way to force the phone to use only 3G? I also like the option to go back to 4G when I am in a good reception area.
View 3 Replies
View Related
Mar 21, 2014
I want to update my samsung 4.1 tab 3 to 4.4 ...
I have checked the update server but it wont find or download it...how to update?
View 1 Replies
View Related
Sep 27, 2013
my phone rom damaged..i want to install new room.
im using s4 clone with air gesture..mt6575 & using jellybean..
View 7 Replies
View Related
Jan 9, 2013
I have samsung galaxy ace s 5830. I had tried to flash cyanogenmod from recovery mode. I downloaded cm-7.2.0-cooper.zip file. and selected the same in recovery mode. But after successfully installation when I am booting the phone only A N D R O I D letters appears on my screen and my phone does nothing after that. I have also tried removing the battery 2/ 3 times.
View 5 Replies
View Related
Jun 8, 2012
The title says it. I like Samsung based Rom for it's rich icons, S Pen and S Memo and I Iike the navigation bar from cm9 and aokp based roms. Since I can't find such a rom or I have missed it, I'm using LiquidSmooth now, which is a great rom with Navigation Bar.
Samsung Galaxy Note GT-N7000
View 1 Replies
View Related
May 21, 2013
I currently have a Samsung galaxy S3 but have been offered the chance to have an HTC One X. I love the design of the One X but wanted some peoples opinion on what phone you think I should have as it's valuable to get people's comments and opinions.
View 5 Replies
View Related
May 15, 2012
I have my Galaxy ACE rooted and with network unlock.
It's posible to re-lock the cell phone??
View 2 Replies
View Related
May 18, 2014
I have followed the instructions for rooting using ODIN309 and 'samsung tab 8Odin309CF-Auto-Root-kona3g-kona3gxx-gtn5100.tar.md5' with no success.
<OSM> Please wait..
<OSM> CF-Auto-Root-kona3g-kona3gxx-gtn5100.tar.md5 is valid.
<OSM> Checking MD5 finished Sucessfully..
<OSM> Leave CS..
<OSM> All threads completed. (succeed 0 / failed 0)
<OSM> All threads completed. (succeed 0 / failed 0)
the product name on the boot screen is GT-5118. Do I need to wait for the proper .md5 file to be available? Bought from Amazon, still returnable.
View 7 Replies
View Related
Oct 12, 2013
Started to explore the matter of changing/adding fonts via settings/device/font style. From there you have to option to pick a pre-installed font or click below on "get fonts online". I can't seem to understand why none of the font packs will work. They install and populate in the font list under settings/device/font style however when ever you select one it tells you it's not compatible and continues to ask if you'd like to uninstall the font pack.
View 2 Replies
View Related
Jul 3, 2013
Rom for Samsung Repp? One that might put either Honeycomb, ICS, JB on it? Tired of the 2.3 gingerbread.
View 2 Replies
View Related