Android :: Writing An App That Receives Command From Web Site
Mar 19, 2010
I would like to write an Android application that can be activated by sending it a command from a web site. Is this possible? Actually, the app would be running on the phone and I would be sending it a command via HTTP.
View 5 Replies
Sep 24, 2010
I am just wondering about how android handles sms when it receives them. More precisely my question is when the android phone receives a sms message, which application saves the message to the mmssms database? Is this done by the OS or by the native sms application?
View 1 Replies
View Related
Jun 15, 2010
I'm trying to listen for preference changes from an activity (see below). It never fires. Is it due to the fact that the activity in question is not in focus when the change event fires?
CODE:.....................
View 10 Replies
View Related
Sep 11, 2009
Why does app not get onDestroy when exited but then receives an onCreate when relaunched?
Here is the trace. Launched app
It received onCreate and the other expected on calls for a launch. Now, leave application with the home button and it receives onSaveInstanceState onPause onStop
And returns to the main Android screen (the one with Google Search at the top) Launch the app again and it receives onCreate onStart onResume
The docs say onCreate is Called when the activity is first created. But here it is never destroyed but created again. There are many objects that never got GCed because the app was not onDestroyed?
Is this a memory leak? What have I missed? Or should I assume that onCreate can be recalled for an already created app.
View 2 Replies
View Related
Jul 18, 2012
I can send MMS messages perfectly fine, but if someone tries to send me one I get nothing. No notification or any way of knowing I didn't get it unless someone tells me they tried to send me one.
I see in the GO SMS settings the MMS part is in Red, but there don't appear to be any settings to resolve the issue.
View 2 Replies
View Related
Dec 2, 2009
Is it possible to get an intent when the user receives a mail and to cancel the gmail notification?
I want to filter some messages and I do not want to get notifications from them.
View 5 Replies
View Related
Sep 6, 2010
I have a rooted samsung captivate with sideloading enabled. After experimenting with different wifi tethering apps from the unofficial market, I began experiencing difficulties with my wifi connection. Even after uninstalling every app that I thought was changing the wifi state, the problem still persists. I can turn on the wifi and it will act normally for about 30 seconds before turning off without user intervention. In dmesg, the error is as follows: 'mmc1: Got command interrupt 0x00060001 even though no command operation was in progress.' Is this caused by an app or is this a more complicated problem?
View 15 Replies
View Related
Sep 29, 2010
I want to call web service in some frequent interval, when button is clicked..! How can i achieve this..!
View 3 Replies
View Related
Sep 1, 2010
I manually updated my motorola droid to android 2.2 FRG01B, will I be able to receive the OTA update for FRG22D?
View 8 Replies
View Related
Jul 5, 2010
My friend has an app on his iphone where he takes a picture and sends it to a random person and he recieves a random picture in return, does something similar exist?
View 5 Replies
View Related
Jun 5, 2010
My Incredible paired easily with my Toyota car bluetooth and works great, however. . . . everytime the phone sends or receives data (incoming text or email or looking at the internet or answering a text) it mutes the stereo for a couple seconds. It is as if the phone is preparing to make a call. Anyone have any ideas what is going on here? (of course, I'm only looking at the phone while stopped at a traffic light.)
View 2 Replies
View Related
Jul 21, 2010
I am currently writing the backend for a service which has 3 clients: browser, android native and iphone native. I am having a little trouble with coming up with an authentication system since I don't know what can really be done on the clients.
I am using django + twisted for the backend.
Basically, I am going to be writing RestfulAPIs to open up for the clients on both phones to call.
Now the real question is, how should I come up with an authentication system?
I have thought about using sessionids, this works very well with the browser and I can use django's integrated app for that.
However, I don't know if it's possible for both the iphone and android to obtain a unique sessionid on the handset. Should I write an API call to distribute unique sessionids?
if that's the case, is it possible for me to still use django's authentication system since a lot of the stuff here are customized? ( I am not even using a rdbms - I am sticking with mongodb, so I was on the verge of dropping django's authentication app ftm).
I have looked at foursquare's API and their basic auth method requires you to pass in user:password in every http request header. That adds 1 additional authentication each call which can kind of seem excessive.
View 1 Replies
View Related
Jun 9, 2010
This is a pretty open ended question.I have a T-Mobile Touch and have some free time on my hands. So far as i understand im stuck with Android 1.5 and no sign of T-Mobile or Huawei releasing a ROM using a more up-to-date version of the Android SDK.Im asking what are the major complexities involved with making a ROM for this fone using a newer version of the Android SDK?
View 1 Replies
View Related
Sep 16, 2010
I would like to open an mp3 file with my own audio player(based on mplayer and FFmpeg) I packaged in a apk file. It runs fine using command line and the executable version but not when packaged in apk. I got the messages using adb logcat window:
I/stdout ( 2115): PCM: Samplerate: 48000Hz Channels: Stereo Format s16le I/stdout ( 2115): [AO PCM] Info: Faster dumping is achieved with -vc null -vo null -ao pcm:fast I/stdout ( 2115): [AO PCM] Info: To write WAVE files use -ao pcm:waveheader (default). I/stderr ( 2115): [AO PCM] Failed to open /dev/msm_pcm_out for writing! I/stderr ( 2115): Failed to initialize audio driver 'pcm:file=/dev/ msm_pcm_out' I/stderr ( 2115): Could not open/initialize audio device -> no sound. I/stdout ( 2115): Audio: no sound I/stdout ( 2115): Video: no video I/stdout ( 2115): Exiting... (End of file)
I put the permission in the manifest file as follows:
code:...............
View 3 Replies
View Related
Apr 9, 2009
I want to edit image for Writing text on images, is it possible in Android, if so, how to achieve this.
View 3 Replies
View Related
Nov 6, 2009
Does anyone have any suggestions on where to start in case one wants to write a firewall for Android? I am interested especially in how would one go about in blocking access for various applications that are blacklisted from a firewall application. As far as I could find, there are no firewall applications in the real sense except Droidwall which uses iptables on rooted phones, but I would like to see if there are any API calls currently in Android that may help with this task, be it NDK or SDK.
View 3 Replies
View Related
Mar 31, 2010
I'm looking for a way to programmatically save an array of shorts as PCM data. I know that this should be possible, but I haven't found a very easy way to do this on Android.Essentially, I'm taking voltage data, and I want to save it in PCM format. My function looks something like this:public void audifySignal(short[] signal) {// Create a WAV file from the incoming signal}Any suggestions would be awesome, or even references. Seems like the audio APIs built in to android are more geared for directly recording from the mic, and not so much for lower level signal processing type work (at least for saving raw data to a file). I'd also like to avoid having to manually write the PCM file headers and what not.
View 1 Replies
View Related
Jul 8, 2010
When implementing download function it work but during file saving to sdcard i get the following Default buffer size used in BufferedInputStream constructor. It would be better to be explicit if an 8k buffer is required.Also IO Exception occure
W(14495:0x389f) java.io.FileNotFoundException: /sdcard
W(14495:0x389f) at org.apache.harmony.luni.platform.OSFileSystem.open(OSFileSystem.java:244)
W(14495:0x389f) at java.io.FileOutputStream.(FileOutputStream.java:97)
W(14495:0x389f) at java.io.FileOutputStream.(FileOutputStream.java:168)
W(14495:0x389f) at java.io.FileOutputStream.(FileOutputStream.java:147)
View 1 Replies
View Related
Jul 22, 2010
I have a game object that I save like this in OnPause()try {final ObjectOutputStream os = new ObjectOutputStream(openFileOutput(gameName + ".sav", 0)); os.writeObject(gameObject); os.reset();} catch (final Exception e) {e.printStackTrace();This works fine except on some of the older or slower phones it can sometimes take too long to complete. I end up getting a ANR (Activity Not Responding) error. I would like to move this to a thread to prevent blocking the UI. However when I try this I run into multiple problems.First openFileOutput is only available in my activity. I worked around this by passing the ObjectOutputStream to the thread. After that I could save the object but later when I tried to reload I get a java.io.EOF Exeception. does anyone have a good pattern for writing objects to a file from a thread?
View 1 Replies
View Related
Aug 22, 2010
I try to write to a Csv file via:mFileWriter = new FileWriter("/sdcard/program/file");mCsvWriter = new CSVWriter(mFileWriter);At the moment it throws an exception that the file doesn't exist.It's true that the file doesn't exist. What's the easiest way to create the file?
View 1 Replies
View Related
Aug 28, 2010
Is there any way of accessing the internal SD card on Android devices that have internal flash, internal SD and external SD cards?
View 1 Replies
View Related
Sep 1, 2010
i have a small issue i can't figure out.For my program, i basically want to execute some code if the user hasn't done anything with the application for 5 minutes (say log out).how can i go about doing this? i'm lost on detecting that the user has done nothing, and then reset the count once the user has touched the tablet or something. can somebody give me some pointers?
View 1 Replies
View Related
Jun 17, 2009
I've been looking around on the net and in this group, but i have not found any java package that can read and write EXIF data.
I tried Sanselan. They say they don't use ImageIO/AWT, but they actually do use AWT. The class can not be loaded because there is an AWT dependency:
CODE:......
What i want is not so much creating my own EXIF data, but preserving a JPEG's meta-data (EXIF). I'm planning to load a JPEG, edit its bitmap and write it out again to a(nother) JPEG with the same meta-data as its original.
View 2 Replies
View Related
Feb 10, 2009
I am writing a custom button.
In the android button, I can customize my button like this:
CODE:......
And in the Button.java source code, it gets the value like that: In TextView.java:
CODE:......
My question is if I need to add a new value in the customization for my button.
CODE:....
How can I get 'myattribute' in my class for my custom button?
View 4 Replies
View Related
Mar 30, 2010
I am writing an application that will create a textfile in the /sdcard or /data directory and write messages to the textfile.Each time I want to append the messages and not overwrite the file.
View 7 Replies
View Related
Jan 26, 2010
I recently purchased a .me domain name. I uploaded some photos to this site and was going to check it out on my phone. Well the browser will not take me to my site.
View 5 Replies
View Related
Jul 15, 2010
I'm in the process of extending monkey for software testing purposes, so I would like to replace the current monkey.jar which my own compiled monkey.jar in the emulator. The current monkey.jar is
located at /system/framework/monkey.jar.
When I try to run the following command:
adb push monkey.jar /system/framework/monkey.jar
I get the following:
'failed to copy 'monkey.jar' to '/system/framework/monkey.jar': Out of
memory'
How to replace the current monkey.jar?
This actually works if I'm running Android 1.6 in the Emulator, but nothing after that.
Yes, i've tried 'abd remount'
This is not a .jar specific issue. I can't push any type of file to /system/framework
View 2 Replies
View Related
Oct 27, 2010
I'm trying to read from a file while it still opened for witing.
View 2 Replies
View Related
Aug 16, 2010
I've had an inquiry about whether my Android app can interface with a serial device via USB cable. Before I invest too much time in this path, I'd like to know: Is this even possible? Some previous threads indicate Android won't do host USB. Would it require root access and/or the NDK? Would it be better to advise the potential client to look for a serial blue tooth adapter? I can see that there is a Blue tooth Sock class which may do the job.
View 4 Replies
View Related
Jul 29, 2010
I have created an edit text. Currently the writing keypad is made visible when i click on it. Is there a possibility where I can make the writing keypad visible from starting itself i.e. no need to click on the edit text view.
View 5 Replies
View Related