id
string
title
string
text
string
19583
Disappearing/deleted .pls files
I am making application that is using .pls files to read shoutcasts' adresses from them. At one moment I noticed, that sometimes .pls file I was reading data from is disappearing after I have used it. After lots of testing, I noticed, that if I rename file to .txt, it won't get deleted. A little more testing, a voila - sometimes, if I read data from one .pls file (pathname provided in String), ALL .pls files on sdcard get deleted! And my doing anything with any of them - they just all get deleted. I am using HTC Desire Z, Android 2.3.3, not rooted, and I don't remember installing any applications that could be deleting files, especially without my knowledge. Any ideas? I can provide you with the app code I am using, but I don't really think it is connected in anyway to this problem.
69034
updating from 4.3 to 4.4.x
I would like to upgrade my current nexus 4 that's already rooted on 4.3 to the latest 4.4.x android, ideally while keeping my root. Any tips on how to do this? I've fallen so far behind on the updates that I don't know what's safe anymore. Thanks in advance!
69037
Android SD Card Free Space Issue
I've got this problem...I use a Micromax A110Q with the stick Jelly Bean...FROM the past few weeks(OR Months) I'm having storage issues with my SD card..I find that it's free storage space is zero bytes...I removed many pics and junk such as cache, hpns folder, lost.dir etc...for some time..I'll get free storage for the things I deleted...but..after an hour or so...I find that my free storage is decreasing slowly and gradually it comes to zero bytes..as I mentioned above I've deleted many junk files and used many apps...but no luck!! It will get to zero again..!!! And the stats don't seem to match up in the storage section inSYSTEM SETTINGS!! HELP!!!!
64001
Why does my Samsung Galaxy SIII with 4.3 run so slow
Hi I live in South Africa and we recently received the 4.3 update for the Galaxy SIII. When I perform general functions on the phone(open apps, browse web, run multiple apps) everything goes very slow and as an example if I push the home button the apps on my home screen are gone and then return again after a while. Why would this update do this to my phone? How can I increase the performance of my device which now runs on 4.3?
20866
LG Spectrum Jumping To Home Screen
I've got a problem with my LG Spectrum. I've had it about 3 or 4 weeks now. It keeps jumping to the home screen. In other words, whatever app I'm looking at or have open, it will just exit to the home screen. It's an intermittent problem. It doesn't happen all the time, but when it does it will often happen several times over and over again. It exits, I go back into the app. It exits again a second later. I go back into the app, etc. I haven't been able to find any particular pattern to it. It can happen in any application. It can happen while I'm typing, swiping or just looking at something. It can happen if the phone has been on for hours, or if the phone was just barely turned on and I'm in my first application. It never shows my any error whatsoever. However, about 25% of the time I will see for a brief flash the Car Mode screen popup or the Car Mode icon appear on the status bar at the top. So, I'm guessing it has something to do with the Car Mode being activated inadvertantly/incorrectly, but I'm not even sure how the phone decides it's time to start Car Mode yet. Every other phone I've ever had you started Car Mode manually. The phone is not rooted and the latest OTA updates have been applied. Firmware: VS920ZV4 MUC 6.2.0.3_B013_6
69038
Can not read MMS on dual SIM phone
A have two SIM card phone: LG E455 (Optimus L5 II Dual). Primary SIM card is full operation, secondary is receiving calls and SMS only. SIM cards are from different providers. I received MMS message notification to the SIM2. Trying to open it I get the message "Switch default data network SIM card to retrieve MMS: Cancel, Settings". If I'd choose "Settings" I'd see that my default data network is SIM1 (SIM2 is not able to transfer data at all). So the message can not be loaded. What can I do to go through this dump bug?
64008
Storage on HTC desire X
The internal storage on my phone is almost full. The storage screen tells me * 2.77GB / 2.91 GB taken * Apps 0.89GB * Other 1.89 GB * Available 138MB What is this "other" and how can I clean it up? I already followed the steps of "make more space", it barely makes a difference. Phone Storage then tells me 43.00MB / 1.09GB is taken. And on the SD card I have 1.86GB / 14.72GB taken. I have plenty of storage in various places yet when I try to install apps I'm unable to do so cause of "insufficient storage". How can I fix this?
49159
Android mic problem and cell freezing problem
I had (and I still have) problem with my phone, a Samsung Galaxy S3. Sometimes people hear me bad or doesn't hear me at all and this is a real vexing problem. I brought the phone in a Samsung authorized center, they said me that my OS version (a Jellybean branded by H3G) could be bugged. They've replaced it. Now audio problem is still present and as if that weren't enough my phone freeze it's screen at least seven, eight times per day (I have to detach the battery to recover this issue). I have installed a software to record my phone call, I have listen again every phonecall in which my interlocutor said that he doesn't hear me and... my voice is perfectly audible in registered phonecall. I always thought that my microphone was defective but at this point I'm not so sure of this assumption. What can I do? I have no idea about the problem, could a non-branded Jellybean version resolve the problem? Could samsung completly replace my phone?
49152
Location woes on HTC
If the NSA tracks me via my HTC phone, they must think I am strange... My location never updated. Ever. I tried removing the cache from News and Weather. Tried using GPS. Tried using WiFi. Nothing seems to work. Is there a canonical way to re-set the location in Android? Note: Phone is HTC Sensation XL. I have factory re-set it several time, no change: the first location Weather picks stays as the current one whatever I do. Applications are any weather apps whatsoever. I installed several and none updated their location correctly.
49155
Do not auto-mount Samsung Galaxy S4 Mini when USB is connected
I had an HTC desire phone, before upgrading to a Galaxy S4 Mini. I have run into an annoying problem. On my phone (not on the SD Card), I have private data, including an RSA key, which I use to SSH into my different computers and servers. On the Desire S, I had the phone on default "Charge only" so people who nicked my phone didn't just get access to what was on it. How do I do something similar with the Galaxy S4? I need some way to disable the mount-by-default so people who steal my phone can't just plug-in a USB cable and steal all my data. The phone should still be able to mount as a storage device, but ONLY when it is specifically activated. In screen-locked mode, it still auto-mounts when plugged in - not exactly a good way to protect the data on the device.
45638
Google+ Auto Backup vs Instant Upload
What is the difference in Auto Backup and Instant Upload?
48209
Trying to vacuum all databases under /data with sqlite3, but fails with error 14
I would like to vacuum all my database files under /data, to achieve somewhat better performance so I ran the following script: for i in $(find /data -iname "*.db"); do #echo $(basename $i); sqlite3 $i 'VACUUM;'; resVac=$? if [ $resVac == 0 ]; then resVac="SUCCESS"; else resVac="ERRCODE-$resVac"; fi; sqlite3 $i 'REINDEX;'; resIndex=$? if [ $resIndex == 0 ]; then resIndex="SUCCESS"; else resIndex="ERRCODE-$resIndex"; fi; echo "Database $i: VACUUM=$resVac REINDEX=$resIndex" | tee -a /data/vacuum.log done As you can see this script vacuums and reindexes each database file under /data. REINDEX works fine, but VACUUM does not. **It returns "Error: unable to open database file". (error code 14)** I am dealing with /data. So, it can't be a mount problem.
48208
Why does Exchange ActiveSync not keep more than 'x' days of mail?
I have a HTC Desire X. I have set Exchange ActiveSync to download past 3 days. However, why does it not keep older mails which are already downloaded? i.e. on Friday, I can see mails from Tuesday on. On Saturdays, I can only from Wednesday on. The Tuesday email which was already downloaded and read is no longer visible? **Is there a way to make not delete the local copy of older emails?** There is an earlier question which is similar - Why does stock email app only keep 25 latest emails? However I don't think the accepted answer there is relevant here. From that answer > to prevent large transfers of data that end up using the device > communication thus leading to a faster battery drain; Why would keeping older mails cause large transfer of data? The older mails are already downloaded and are there on your phone. > to preserve memory consumption that in turn would leave your device slow and > inefficient. Just because the older mails are there on disk, it will not increase memory consumption. A better way to program it would be display '3' days but have a way to show older ones on demand - since the app would read it from disk only on demand, it wouldn't increase memory consumption. My phone runs Android 4.0.4.
41813
Sophix tablet will not work without an SD card
My Sophix tablet was working without the SD card, but now the camera will not work. I get the following error message: > Insert a SD card before using.
45630
Unrooting Stratospehre
I have a Stratosphere that I rooted a while back, but ever since, it has not been able to perform a system update. It would restart and everything, but then the update notification would still be there. I tried unrooting it, which at least got rid of the warning symbol when it boots, but it's still stuck on 2.3.5. (Although the update notification has disappeared). I checked if it was still rooted, and ConnectBot still lets be do su, so it looks like the unroot didn't work. Why can't I unroot?
45633
Where did the SIP settings go to on my LG Optimus 4X?
About 3 months ago I bought my _LG Optimus 4X HD_ (aka P-880), which shipped with Android 4.0.3. I searched the settings up and down, and was quite surprised there were no SIP settings available. I'm very sure SIP support was added to AOSP with Gingerbread, so it had to be there with ICS! Did LG remove them from their Android installation? Is there any way to get them back?
45632
Voice activated offline voice recorder
Sometimes while driving or washing the dishes some idea pops up in my head while I am listening to music. How may I record voice without touching the phone? (Sometimes while driving in remote places I do not have Internet connection so it needs to work offline)
45637
During a Google+ Instant Upload, is it all or nothing?
I'm in the middle of an "Upload All" but I don't see anything online yet? Is it an all or nothing upload? My upload keeps getting stuck on the next to last item. It would be nice if I could see the first 356 of 358 items while the last 2 items are uploaded (or not).
9193
phone not visible to finder (on mac) suddenly
When I connect my phone to my mac via usb, I no longer see it in finder. Nor does it automatically launch iphoto as it used to. On the other hand, I can see it from sdk tools like ddms, and can access the files that way (with usb debugging turned on, of course). I can also see other android devices just fine. Is there some setting that got turned off somewhere? MyTouch 4g, Froyo.
7947
How to have phone prioritize encrypted Wi-Fi hotspots?
I have a Wi-Fi solution similar to FON which has an encrypted private home Wi- Fi hotspot and a guest network which is unencrypted and requires one to log in once a day. My problem (or rather, annoyance) is that the phone seems to prefer the unencrypted guest network. I have it enabled because I can use other people's guest networks when I'm roaming about in the city. It would make sense that between an encrypted and unencrypted hotspot, it would be wise to prefer the encrypted one, regardless of signal strength. Is there any way to resolve this?
7940
Where is "Back up my data" stored? Can it be edited?
Anybody know how to get to it? It's not on the Google Dashboard, or linked to from the developer docs. I've even dug through the code, but it's confusing. Anybody know a way to download it, and better yet, upload a replacement? For context: My phone sometimes starts acting weird (random hangs and/or reboots), and one theory is that some part of my backup is getting periodically corrupted, because even with a hard reset some problems persisted, but went away when I cleared "Back up my data" before doing another factory reset. Now that things have started to get weird again, I'm wondering if I could download that backup data and keep just certain parts of it.
7942
Can not flash LK2.08 for original firmwares on my spica
Can not flash LK2.08 for original firmwares. I try like this: http://www.addictivetips.com/mobile/root-samsung-galaxy-spica-i5700-with- leshaks-kernel/ i am using this kernel: http://forum.samdroid.net/f55/lk2-08-original- firmwares-root-new-superuser-wifi-tether-bb-12-07-2010-a-1193/ and i copy it to my localh computer hard disk not to phone SD card. Whn i click start i get this: > Download Start... <0> Create File... > <1> StartThread Detected : 1 <2> > StartThread Detected : 0 <3> > StartThread Detected : 0 <4> > StartThread Detected : 0 <5> > StartThread Detected : 0 <6> > StartThread Detected : 0 <7> > StartThread Detected : 0 <8> > StartThread Detected : 0 <1> setup > connection... but takes 20 minutes and nothing changed. Is this normal or what i am doing wrong?
9196
Flash Rom and Recover Later
I Want to put Android 2.3 on My Phone, its an ZTE Racer with Android 2.1 and the Manufacturer hasnt released the new version i have found a Rom, But im afraid to do it and lose my phone, can anybody tell me how to get my actual version of android back it up so if something goes wrong i can recover later? and how to put the new ROM on the Phone?
28080
How can I study or prepare myself for an exam with the help of my Android device?
I want to learn a language or prepare for an exam with the help of my Android phone or tablet. Are there any efficient and fun methods out there to do so?
827
German lessons in an Android device
> **Possible Duplicate:** > How can I study or prepare myself for an exam with the help of my Android > device? Is there any German course that I could do on my Android device? Whether it's an app or an optimized web site it's fine by me.
7948
Where are attachments stored when sending text messages
Where are the **attached images to text messages stored** on Froyo 2.2.1 ( Samsung Galaxy S , if that should make a difference ) ? I am asking following problems I have now when sending texts with images attached : _I can't send a picture attachment together with a text message_. **\--- UPDATE ---** I have found the solution to the problem mentioned. Please look at the answer of my other question if you have the same problem.
42177
How should I correctly turn on my phone?
This is regularly driving me nuts. Every once in a while, my phone freezes for whatever reason. I press and hold the power button to shut if off. Now comes the part that's giving me trouble. * If I just press the power button, nothing happens. * If I press and hold the power button, at some point a picture of a battery appears. It will disappear again after a while (probably because I'm still holding the power button and shutting the phone back off) * If I press and hold the power button and release it when the battery image appears, the image will stay and indicate that the battery is being loaded. * If I press and hold the power button for _just the right amount of time_ , the Galaxy S2 logo appears and my phone boots. So, usually I find myself going through this cycle a couple of times until I finally get my phone booted. What am I doing wrong?
42176
Rooting Galaxy I9100 S11 Jellybean without changing ROM
Am looking for a simple safe way to uninstall some Vodaphone branded apps without changing the ROM (if possible) I expect rooting will be necessary and possibly a temporary ROM will be required to do this. I can live with the majority of the installed apps, it is just the brandings I dislike. My main concern is that there appear to be 2 separate web Vodaphone browsers one is clearly badged, the other appears to be clean (but isn't) If I uninstall these I might be locked out of web access. I have recently updated to Jellybean 4.1.2 and wonder if I will lose this if I root. The following is phone info: Baseband I9100BULS1 Kernel: 3.0.31-889555 dpi @ DELL 228#3 SMP PREEMPT Thu Jan31 14:48:54 KST 2013 Build No:JZO54K.I9100XWLSD Am new to this, keen to understand and anxious to get it right. Any advice would be much appreciated. Many thanks
57578
Android SMS path
I can't find the path of SMS database files in android os. where is the right path for SMS database files? I already tried these values and these values are not right: /data/data/com.jb.gosms/databases/gommssms.db /data/data/com.android.providers.telephony/databases/mmssms.db
16917
Asus EEE Transformer never gets a GPS fix unless I reboot it
I have an Asus EEE Transformer (not the prime) that has unreliable GPS performance. I usually just fire up Google Maps in my car and use the navigation but the tablet always gets stuck with "Searching for GPS". This can go on for over 30 minutes in which the tablet either won't get a signal at all, or might get one every once in a while, update the map, and then go back to "Searching for GPS". I have tried the following things: * Done the same navigation with my Nexus One in the same car and it has no problem receiving a signal right away and finding it's location so I'm pretty sure it's not environmental conditions. * I tether the Transformer to my Nexus One for internet so at first I thought using the "Use wireless networks" for location was just trying to get the location from the phone but toggling the option on or off doesn't seem to make it work worse or better one way or the other. * The amazon reviews don't seem to indicate an overwhelming problem with the Transformer with GPS. * I have tried the tips in this forum thread on the transformer forums. * I've tried installing GPSfix and using that tool but it doesn't seem to help. * Android version is 3.2.1, GPS version is 5.5.8, and Build # is: `HTK.US_epad-8.6.5.19-20111107` So far the only reliable means to get the GPS working seems to be to shutdown the tablet and fire it up again, at which point the GPS and Google Navigation works right away, which leads me to believe that it's a software or configuration problem rather than a hardware issue.
16910
How can I add a search button to my dock on a Galaxy Nexus?
I just saw a tweet where someone had added a search button to the 3 docked software buttons ![enter image description here](http://i.stack.imgur.com/nCkW6.png) **So I'd like to know how to add the search button (or any other) to the dock with the Back, Home and Multitasking buttons** Is this a setting of the default launcher or done through some app?
42179
Settings Keep Changing back
The settings keep going back to factory settings either when the battery is low OR I turn off the phone. For example, calendar sync turns off and I have to turn it back on each time I want the calendar to sync. The display goes to the least brightest settings and 15 seconds for screen time out and I have to go in and readjust the brightness and screen time out time. It is really annoying. When I took it to the Sprint store and asked them about it, of course, it wouldn't do it.
16913
Activate voice recognition with keyword
I want to have the mic listening for a keyword and then have it turn on Google recognizer? Has anyone been able to do this and how? Any advice would be greatly appreciated.
12208
How can I get the stock browser to exit?
Unlike most apps, the Android browser doesn't seem to exit when you hit the Back key to exit to the home screen. This happens even when I have no web pages open. There doesn't seem to be an Exit option when I press the Menu button in the browser, either. For whatever reason, Android rarely kills it like it does with other apps. It takes up quite a bit of memory and even CPU time when in the background. Either way, all my other apps exit nicely and I'd prefer that the browser did too. Is there any way I can get the browser to exit? One could use a task killer but it's a bit of a hassle and it seems to leak memory when I kill it with TouchWiz's built-in task manager, besides the fact that task killers suck. I have a Galaxy S Vibrant running Android 2.2 with TouchWiz.
12204
Does updating to 2.3 fix Galaxy S' lag issue?
As title. The lag issue I am talking about is the notorious "RFS lag" as explained here, and is also refered to here and here
12206
Disable Phone's Built-in Microphone?
I just conducted a tiny experiment with the original headset that comes with Nexus One: I plugged it into the phone, expecting the phone built-in microphones to be switched off, replaced by the microphone on the headset. I was disappointed to see that the voice input behavior of the system didn't change: The phone seems to continue picking up sound from the built-in microphone(s). So, I thoroughly covered the headset's microphone with tape and tried again... Still, no change. The Nexus One's built-in microphone are fully enabled. This is disappointing because I really need to disable the Nexus One's built- in mics, so that I can use a different microphone instead. Is there a way to accomplish that?
12207
Can you run Linux command line apps on Android?
I'm brand new to Android; in fact I've never owned one. But I'm traveling all this summer, and I'm very interested in doing some programming while I'm on the run. QUESTION: Is it possible to run a full Ruby development environment with Emacs on Android? How? And does "rooting" give you anything close to a real Linux system?
29358
Information regarding /proc file system
Yesterday I rooted my android phone. By using Es File Explorer when I see the file listing then I find various folders. For the sake of curiosity I would like to know that what the **proc** file system contains.
29359
How to prevent applications from discovering my phone as being Rooted
I have to install an application that has discovered my device to be rooted. So this is a two part question. 1. How did it discover in the first place that my phone has been rooted 2. How to prevent the application from discovering my phone as being rooted
10518
How do I enable NFC for my Phone
There have been a lot hype about NFC lately, and I am eager to try it out, but unfortunately I dont think my HTC Desire HD supports NFC. Is there a way to enable NFC for HTC Desire HD ?
46615
How can I set a custom per-person ringtones, but for texts and not calls?
I know how to set a custom ringtone for a given caller on my phone: pull up the person's entry under People, open the menu and select "Set ringtone." However, this only applies to regular voice phone calls. Is there a way to do a similar thing for the sound that plays when a "text" -- by which I mean either SMS or MMS -- is received? If so, what is it? The Messaging app's settings only seem to let me choose a single notification sound, but I'm hoping there's something I'm overlooking.
63252
How do I back up Google Authenticator?
I'm starting to use Google Authenticator for more and more things now, but I've just realized that if I lose my phone, or if I need to wipe and restore it to install new firmware, I will lose all of my codes. Is there anyway to back them up please? Or some kind of fallback that means I can restore it to a new device? Thanks
63251
Use HTTP Proxy with Applications
My college network requires use of proxy settings when connecting to wifi. This restricts internet usage to the browser as it is a http proxy. I have been looking to divert the internet for app usage. I have many apps which I would like to use via wifi, much of the college has poor mobile internet signal. I have tried applications like prox
10512
What's the difference between Android 2.2 Froyo and Android v1.6 Donut?
I am really new to Android and I barely know about it. I now want to buy an Archos device that should be an alternative to iPod and its size should be like the iPod. I saw there are different Archos devices. I am doubting between the Internet tablet (Android 2.2 Froyo) 43 and the 48/5 (Android v1.6 Donut). What is a better OS? What is more advanced? My desires: Mandatory: * Audio/Video playback (flash) * Wifi (Gmail, GCal sync) * eBook reader * Pocket size (iPod size or so) Desired but not mandatory: * Voice mic (for potential web conversation, and recording) * Video/photo camera * FM receiver BTW, I just saw Android 3.1 is out, is it possible to update these devices with the new OS?
53563
Using Google voice number without data
So I know similar questions have been asked, but I feel my situation is a bit unique to everything I've read. So I transferred my old number that everyone knows to Google voice, then I got a new phone with a new number that only has calling and texting. I took the SIM card out of that phone and put it into my android phone, effectively giving me an android that has calling and texting, but no data plan. I set up google voice to recognize my new number and call forward and everything seems to work while I'm on wifi, but I don't seem to receive text messages when I am not on wifi. Is there a way to tell google voice to send all text messages it receives on my gv number to my carriers text plan with my new number (even if I don't have access to data)? Also can replying to these messages without being near wifi show my gv number instead of my new phones number? I can call Google voice and have it call the number I want to have my old number always show up, but with texting I haven't seemed to find a way yet. Anyone in a similar situation have a good solution?
10510
How do I delete draft SMS text that keeps reappearing on my HTC Thunderbolt?
My question is essentially the same as that discussed here, but I have tried everything mentioned in the discussion there and none of it has solved my problem. To briefly summarize the problem, every time I open a thread to send a text (SMS) message to my wife, the same fragment from a previous draft text I once prepared but did not at the time send re-appears in the text entry box as the beginning of my next reply. I have repeatedly deleted all drafts appearing under Menu/Draft (floppy icon). I have deleted the entire thread of prior texts with my wife and started a new thread, hoping to break the connection, only to have her send the first reply in the new thread, and find the fragment there again when I began to reply to her. I have tried just sending the fragment to my wife to "clear the pipes" (warning her that it wouldn't make sense but I was doing it to solve this problem). I have edited the fragment and kept one word of it mixed into an otherwise new message, hoping it would consider this draft to be completed and sent once and for all. You name it, I have tried it. Please help! My phone is a stock HTC Thunderbolt on Verizon. I previously had the Handcent SMS app installed but deleted it, and the problem is still occurring in the regular Android (or Sense, I am not sure which) messaging app.
10511
Home key doesn't work on my Galaxy tab P1010
Sometime my P1010's Home key doesn't work suddenly. Just like last night, my tab's power was off. Then the Home key stopped work when I rebooted it. But Back key, Menu key, and Search key still work. Why? This is the third time now. I have to restore factory defaults to solve this problem every time. But I need to reinstall all my apps after that for they're lost. It's very tiresome! Anyone can help me? please!
29356
Where the system updates get installed in HTC explorer?
I am seeing a message on my taskbar `System updates are available`. When I am tapping to that message it is showing some 29 MB updates. I am running sort of internal memory, so every-time I am postponing the updates to `later`(I think it will consume 29 MB internal memory). Is this true that on installing the updates will consume internal memory? I am using HTC explorer having gingerbread(2.3) version of Android.
8866
Mount PC folder on my android, then serve audio/video through my Android to my TV via USB?
My plan would be to allow me to connect my Android to my TV by USB, and then be able to play videos/audio from my Computer that is mounted over wifi on my Android. Is this currently possible, or is there a better way that I can accomplish this task (using only a USB cable/wifi and not having to copy files to my Android) Thanks for any advice :D
8864
Why does the vertical size of the scroll bar change?
When I scroll down a web page the scroll bar appears and constantly changes size as I scroll What does this size relate to?
54692
Hide Taskbar During XBMC Playback
I have the Justop K9 device. Functionally, everything works as expected. During video playback on XBMC, however, the Android taskbar remains visible at the bottom of the screen throughout. Is it possible to hide this taskbar without jumping through hoops? I've been given various instructions on how to take the device apart (physically), I've also been told by others to root the device and install all kinds of software. All seems massively unnecessary in aid of just hiding something from the screen? FWIW - I don't actually see a need for this bar to ever be visible. If there is a way to style it permanently or use the registry to hide it, for example, I'll opt for that.
21409
How can I play a sound file to the caller when device receives an incoming call?
I want to receive incoming call automatically, that was I done already, now I want to play my own created sound to my caller rather than using Android's microphone. Is it possible to play our own sound after receiving incoming call? **I have seen this Stackoverflow questionHow to automatically answer call and play prerecorded sound out to the caller and DTMF on Android. Can anyone tell me if it is possible now?** I have searched a lot related to this topic but still I am not able to find something useful. Thanks in advance.
54697
Karbon A5 screen goes black when i press menu button
I have karbonn A5. It was functioning normally till now. But now the screen blacks when i press menu button. Call and message functions are working. Screen has frozen and does not move sideways. I tried removing all downloaded apps it did not work. I also removed and re installed battery. But that also did not help
21404
Intentionally deleted Android system - how do I fix this?
Right now I own a Sony Ericsson Xperia x10 mini and I rooted it. I had this program installed from Android Marketplace that allows you to delete applications. So guess what... I deleted several applications for testing purposes and I knew that if I uninstall Android System it would break everything. I did that epic "mistake" for testing purposes (don't try this). The thing is how do I fix this? I have spent some time reading through forums and installed Flashtool and downloaded the ftf file (X10a_v2.1.update-1_2.1.A.0.435_Generic.ftf) in C:\Flashtool\firmwares directory. What I have to deal with right now: - My mobile phone switched off when deleted Android System so I decided to boot it to see if any error messages comes up. - Now my phone won't power off due to the lack of Android System. So I have to use a torx screwdriver to remove the screws and take off the battery (because Flashtool requires the phone to be switched off) but unfortunately the Torx I have is one size bigger than the required one for Xperia's screws. - I guess I have to wait until the battery is dead or I should just get a proper Torx screwdriver. The thing is that I have another Xperia x10 mini as well (works for now - didn't try any uninstall) and connected it to FlashTool and followed the instructions to flash it but I keep getting this error message: > ERROR - ERR_SEVERITY="MAJOR";ERR_CLASS="SECURITY_CLASS";ER R_DYNAMIC="SIN > header verification failed" I tried to figure out what's causing this and I end up with the "locked bootloader solution". I tried the instructions read here: http://unlockbootloader.sonymobile.com/instructions but when I typed `##7378423##` no service menu was available... That happened to the working Xperia phone. How would I possible do that on a broken Xperia? Any suggestions would be highly appreciated! We're all learning through our mistakes after all.
21405
How do I update all my apps with the new Google Play Store?
I want to update my apps, but I can't find the option in the new play store. How can I do this?
21401
Cable to send audio from iPhone to android phone via TRRS
This is a follow-up to http://electronics.stackexchange.com/questions/29099/designing-a-cable-for- bidirectional-communication-between-2-iphones-via-trrs-he The cable in the above link successfully transmits audio from one iPhone to another. But for some reason it fails on my Android device. I noticed that on my iPhone if I go into sound recorder and make some noise the spectrograph lights up. if I then plug-in one end of the cable and make some more noise it has now gone silent. So it has registered that a microphone has been connected. if the resistance across the microphone si 100 ohms, it will fail to detect the microphone. However setting it at 200 ohms it successfully detects the microphone. however if I repeat this experiment with the android device (Samsung Galaxy S2), the device never registers that an external microphone has been detected. I have tried resistances between 50 and 800 ohm, and the spectrograph on the recorder app steadfastly picks up audio from the inbuilt phone microphone. can anyone shed some light on this problem?
8869
Why does Wifi show an error whenever I try to reconnect (Galaxy Ace)?
I'm using a Galaxy Ace. When I turn off WiFi and try to turn it on again it shows an error. I need to restart my device for it to work. Any ideas?
79218
Samsung Grand 2 - Images deleting automatically from download folder
I am using samsung galaxy grand 2 running Android 4.4.2. It is automatically deleting images and other files. The images and music files are downloaded from internet. After some time (within a few minutes), those are automatically deleted from the download folder. What is the reason they get deleted? This only started happening after updating the Android OS from 4.3 to 4.4.2.
62788
How to turn off the spell checker in Android 4.4.2?
I have a Nexus 4 with Android 4.4.2 and I can't switch off the spell checker. I write messages in several different languages and it insists on changing foreign words to the closest English. Writing a message can take me several minutes to sort out all the errors Android itself introduces. Assessing _Settings_ > _Language & input_ the _Spell checker_ field is turned off, but this doesn't stop Android from messing up my messages. Thank you.
26834
Swype flashing on and off
I just upgraded my Samsung Galaxy SII phone, unlocked from Gingerbread to stock ICS (ver 4.0.3), and I think it looks cool in many aspects. One thing I am getting annoyed with though is the Swype. I used it all the time before, and it was amazing. What is happening now is that when I swype, get my list of suggestions, then I have about 2 seconds to click on the proper word before the suggestion list goes away, and my screen refreshes. This is killing the battery very fast, and is very annoying when typing longer messages. **Is there a way to set the suggestion bar to stay put like in Gingerbread?**
26831
Can Android extract zip files?
Can Android extract zip files? If so, could you please explain the process of downloading and extracting a zip file?
67578
Eclipse(and adb.exe from sdk) doesn't detect my beaglebone black as running android device
I need some help for problem. I'm using Beaglebone Black and Android (JellyBean 4.2.2) with 3.8 kernel. BBB connected to window7 through USB which comes with BBB. When I boot the android on micro SD card, it works fine(I'm using 4DCAPE LCD screen) but I cannot find it as running android device. I turn on the USB debug mode. Thanks.
67576
no alert tone when receiving a message
I have Samsung galaxy s duos 2 GT-S7582. my problem is that, everytime I receive a txt message, I don't hear any alert. ive already checked all the notification settings and all of it were turned on..
67574
Why are Android Apps not as polished as iOS?
When I owned a iPhone, all the software seemed to be very polished(Visually). For example, the process to getting to menu's shorter etc. I own an s4 and the apps and the software does not seem to be as polished as iOS? Both platforms are being developed by very intelligent programmers and creative people, so why is it that Android is not as polished?
67570
LED not turning off even after there are no unread WhatsApp messages
I have this random problem with WhatsApp: the green light that blinks when there are unread messages don't turn off even after I go and read them. It doesn't even help if I delete all the messages. The only thing that helps is restarting the phone. I have a Nexus 5.
68638
Notification led's generic consumption?
Okay I know that all phones got different hardware, and that leads uses just a little power. But. What if I set my led notifcation speed to high (like the light will pulse faster)? How much would that chew off my battery? What about "always on"? How much would that eat? Would it damage the LED in any way? (I know LEDs are supposed to be durable, but the phone switches them off-on for a reason.. I guess.) What I'm looking for is a generic answer, like "it's not noticeable". Or a couple of percent drop.
9127
Is there any way to install Open Office in Android?
> **Possible Duplicate:** > What is a good application on Android to open Microsoft Excel files? Is there any way to install Open Office in Android Emulator, So that I can Open XLS sheet in Android Emulator for my apps.Any help will really be appreciated. Thanks a lot
24578
Handcent SMS Delay sending feature
I'm using the Handcent sms app on my Galaxy Nexus. I set the delay sending feature at `settings -> send message settings -> delay sending`. The feature worked for the next few messages but then stopped. Any ideas as to what may have caused this and how to fix it?
24577
airdroid app FileManager doesn't access to sdCard
AirDroid is a impressive app, but I'm not able to access from pc to th SD content, only to the internal folders (also named sd card I think)
54039
Turn animated gif into WhatsApp sendable video
I'd like to convert a short gif-animation to a video so I can send it to a friend via WhatsApp. Do you know easy ways to accomplish that (e.g. codec etc.)? Best would be doing it on the device directly but I could do it as well on a computer.
24572
Wifi shows error on Huawei U8500
I can not turn on my android device Wifi. It shows error. My device is Huawei U8500. I am using CyanogenMod 7.2.0 Update-6. Please help with this?
24571
Search/route with pre-cached google maps?
I understand that its possible to cache Google maps for offline use. But is it possible to search or calculate new routes with the pre-cached map without connecting to internet?
1
I've rooted my phone. Now what? What do I gain from rooting?
This is a common question by those who have just rooted their phones. What apps, ROMs, benefits, etc. do I get from rooting? What should I be doing now?
236
What does "to root a phone" mean?
I heard this phrase or the variants (rooted phone, rooting, etc.) in android forums but I don't know what it means. Can you explain it in simple terms?
64481
Why are Android OSes "unrooted" by default?
My question is, why must every device/OS be "locked down" and require get arounds to gain full access? Why must they have to be 'rooted', and why are they 'unrooted' by default? On Windows I can gain administrative privileges with a click of abutton or command, but why do we need to go through more trouble with like iOS, Android, etc.? Why can't Android OSes have like an admin command that anybody can enter and gain full access, or file security to automatically protect access of files and enable users to get access with like a sudo command? Why do we need to "flash this", "run exploit software", "custom rom", etc.? Why can't we just have full access like on Windows, OS X, etc.? In short, why are Android OSes locked down and restricted by default, requiring the dance to get desired access? Why can't OEMs, stock OSes, or the like come "rooted" by default and give users complete access without worrying about limited use and lack of access to certain files we may want to change, features, etc.?
56745
Why don't most of the phone manufacturers include root access in their phones by default?
Hello guys I am new here and I just want to ask a simple question about rooting. Is rooting very dangerous for phone? And why isn't it included in the phone by default? And one last question, can any device that runs Android be rooted? If yes is there an application that can do that? Like apk?
69734
what is rooting? Should I upgrade my Xperia U from GB to ICS?
I have an Xperia U[GB] and there are certain apps which do not work on it[device is not rooted shows up everytime I try to open these apps]. So what exactly does it mean by rooted device. Should I root my device? Does it have any negative implications? Also I still haven't updated it to ICS,since I've been told that Xperia U doesn't perform well with ICS.So should I upgrade it?
12666
Benefits of Rooting Your Android Device?
> **Possible Duplicate:** > I've rooted my phone. Now what? I'm considering rooting my Galaxy S2. But would just like to make 100% sure that the benefits that comes with rooting your device makes it worth while. Main reason for me looking up on this is that I'm sick of apps connecting to the net (apps like calculators etc, wtf) and using up the little data that I have. I've read that once you rooted your device there are a couple of apps that let you control which apps do and don't get internet access.... I like that, I'm the one that is supposed to have the say. So is it worth it?
5223
What is rooting?
> **Possible Duplicate:** > what does "to root a phone" mean? Is rooting just copying `su` onto the phone? Does it try to get the root user's password?
58559
How to install CyanogenMod on my HTC Desire SV
My HTC Desire SV isn't listed as a supported device for CyanogenMod. How can I get CyanogenMod to work on it? I'm very new to this. So, I could use some help.
62122
Google Account with limited permissions
I am trying to assess feasibility of an internal initiative at my company. Management would like to: * Distribute Nexus 7/10s which can have primarily calendar and contacts synced by a single Gmail account * Disable ability to send email from this account, although not from employee's account This is an effort to keep calendar and contacts in sync. **Is the second requirement possible?**
62123
Control Amazon Flash/Silverlight player in desktop browser
I am using desktop computer (Windows 7) as a home entertainment center connected to big screen TV. One place I stream my media from is Amazon Instant Videos - which works fine, but it's really inconvenient to control remotely. Is there an Android app that would let me control Amazon in-browser player from the phone? I am aware that there're apps that allow you to control browsers such as Chrome in general (tabs access, zooming etc.) But perhaps there's something player-specific?
53426
Can an app call a phone without me knowing?
The reason I ask is because I have gotten various calls from seemingly random numbers saying that I had called them. When I check my call log, there is no outgoing call to their number. This has happened multiple times, but not very often, maybe once every two weeks. I am normally very careful with the apps that I download and have avg downloaded and scanning periodically. Could it be that someone else can use the same number to call?
62121
Unlock Motorola Droid Razr Maxx (Verizon)
I have a Motorola Droid Razr Maxx on Verizon in the US. I want to take it to Straight Talk, a MVNO that uses Verizon's network. I bought the Straight Talk SIM card, but I get an error that the phone needs to be unlocked. How can I unlock the phone to use it with another provider (same CDMA network type)?
58550
Sync certain contacts between two devices/google account
Is there any way of syncing selected contacts from one android device/google account to another? Consider the following example: Person A and Person B share real life contacts, but on their smartphones, each person has to maintain contact details on their own. The data is there, so why do not share this? The following ideas came to my mind: 1. Create a new, shared account. All contacts that should be shared are stored in this accounts. On each smartphone, contact syncing for this account is enabled. This should work just fine on android smartphones. **But the contacts of the shared account are not accessible through the web interfaces!** 2. Use Gmail Shared Contacts for Google Apps. The drawback here is, that **this does not work for generic`@gmail.com` addresses**. Is there any other way (android app, software for Windows/Ubuntu, own contact server, ...) to sync common contacts in a way, that the contacts are present both on android devices and through the normal google webpages?
28407
Screen goes back to home screen frequently, after Data Network enable
When I enable Data Network, my phone goes back to home screen frequently whenever I use another application or go to another place. Even when I close my screen, my home screen appears. How to fix this error? When i deactivate the data network mode, the phone works normally.. please please please update me the solution on it. My phone is Samsung Galaxy S plus. Model Number - GT-I9001 Firmware version - 2.3.6
58557
Syncing fails after changing Google Apps user's email
A few days ago, I changed the primary email of a Google Apps user from user@domaina.com to user@domainb.com Ever since doing so, Android refuses to sync using either the new or old email address, but I can still log in on the web using both. Both domains are controlled by my Google Apps organization, and attempting to reconnect the accounts after a factory reset gives me an incorrect password error. The device is running Android 2.3.3 if it makes a difference.
28405
Installing custom ROM on HTC phones over Fastboot or ADB
I am trying to build CyanogenMod for Sensation. After building I have `update.zip`, which I can install over CWM recovery manually. But how do I install the ROM over Fastboot or ADB in order to automate the installation process? The same commands which I'm using for Google phones (Fastboot flash system) does not work normally. I think, that after flashing, system partition have wrong address.
34329
Samsung Galaxy Nexus HSPA : Baseband Unkown problem
In further continuation to my previous post, Samsung Galaxy Nexus 4.1.2 Unable to connect to mobile network. My earlier solution could only make it work for a little more than 10 days and I am back with the same "Baseband Unkown" problem on my Galaxy Nexus. This problem seems to be persistent no matter any version of stock that I revert to. Currently I am on stock YAKJU-4.0.4-IMM76I. I have now started looking at the radio logs and I see the lines as below. Can somebody please help me understand them and hopefully help me resolve it. This is really a frustrating experience with my first android device. 11-29 11:54:53.734 D/RILJ ( 472): [0004]< RADIO_POWER error: com.android.internal.telephony.CommandException: RADIO_NOT_AVAILABLE 11-29 11:54:53.734 D/RILJ ( 472): [0006]< BASEBAND_VERSION error: com.android.internal.telephony.CommandException: RADIO_NOT_AVAILABLE 11-29 11:54:53.734 D/RILJ ( 472): [0007]< GET_IMEI error:com.android.internal.telephony.CommandException: RADIO_NOT_AVAILABLE 11-29 11:54:53.734 D/RILJ ( 472): [0008]< GET_IMEISV error: com.android.internal.telephony.CommandException: RADIO_NOT_AVAILABLE Thanks
34327
Android connected to Car system
How can connect my android app to car system for example to get "Level fuel" information or any others info!
34325
Samsung Galaxy Nexus message notifiers
I own a Samsung Galaxy Nexus and would like to **enable** message notifications every 5 minutes if I don't answer a message. Is there any way to do this? Preferably for free.
34320
Samsung Galaxy S2 doesn't play music
New Samsung Galaxy S2 doesn't play audio files. I tried using different players, but none worked. The track ether plays for 1-3 seconds or mixes different tracks into one. Considering trying to return the phone. Does anybody have solution?
35056
Install official Europe ICS ROM on Optimus 2x outside Europe
Now that ICS is available to users in Europe for LG Optimus 2x (p990): I have a p990 but it was purchased in India. Can I download the ROM for Europe and flash the same on my phone? Will it work? Will it give any issues for network connectivity? Or do I wait till the official ICS ROM is released for India?
35057
Default dialer on Samsung Galaxy S3
I have a new Samsung Galaxy S3 running ICS (4.0.4). I would like to use the Go Dialer as my default dialer. The stock Phone app does not claim to be the default dialer, and in fact I've downloaded Default App and set the default dialer to be the Go Dialer. And yet, when I navigate through a contact to the "dial" press, it brings up the stock Phone app. I've seen conflicting reports on whether this is possible or not. Is it?
35054
My samsung galaxy player 5 does not connect to the internet, but apparently connects to my router
I have a cisco linksys E1500 router, secured with WPA/WPA2 PSK. My samsung galaxy player 5, fresh out of the box, conencts to it but cannot access the internet. Based on this thread, I made myself a static IP of 192.168.1.12. It still doesn't work. This other thread talks about MAC cloning, but I'm not sure how to do that EDIT: I remembered we have a messed up router/provider. We have to use DHCP addresses only, and set the DNS servers manually. How do you do this?
35052
Connectivity problem on LG Viper LS840 just updated to Ice Cream Sandwich
MY LG LS840 (Viper) is not opening Play Store after it updated to Ice Cream Sandwich yesterday. My emails are not sending either: they stay in my outbox. How do I fix this? I pulled the battery and it's still not working right.
35053
Incorrect Read Receipt generated by default mail app on Android 4
The default mail app on Android 4 seems to generate incorrect Read Receipts. Here is the case: User ORIGINATOR sends email (using any mail client software), with request for Read Receipt (SMTP header Disposition-Notification-To), TO: PRIMARY-RECEIVER with CC: SECONDARY-RECEIVER. When PRIMARY-RECEIVER opens the email, his email client will (optionally) send a Read Receipt which is FROM: PRIMARY-RECEIVER TO: ORIGINATOR. When SECONDARY-RECEIVER opens the email, his email client should (optionally) send a Read Receipt which is FROM: SECONDARY-RECEIVER TO: ORIGINATOR. But if SECONDARY-RECEIVER opens the email on Android 4 (Galaxy S3 in my tests), using the default email client, the phone sends a Read Receipt which is FROM: PRIMARY-RECEIVER TO: ORIGINATOR, which is grossly incorrect. Has anyone detected the same issue? Anyone has a suggestion on proper forum or support channel for reporting this bug?
35050
Rooting Exagerate XZPAD700
I've just bought a device commercially known as "Zelig Pad", which reports to be "XZPAD700" in settings screen. The device looks made by Hamlet but distributed with Exagerate brand. It carries Android 4.0.4. Anybody knows how to root that device? For sake of curiosity: the device goes in download mode by pressing VOL- + Power. Seeking for something to download into its ROM without bricking it.
55122
App crashes with modded Galaxy Y S5360
I just installed Hybrid v5.0 Jellybread on my Galaxy Y S5360. Since then the internet browser app, Tubemate and some other apps don't work any more. What can I do?
37141
Android as WiFi bridge with AP
I would like to extend a WiFi signal. I could buy a WiFi repeater, but a much cheaper solution would be using an older Android 4 device, which I own and don't use. The Android device is capable of creating a WiFi AP. So if I bought an external WiFi USB adapter for it, with a large antenna used as the receiver and the Android device itself as the AP, I could bridge the network. The hardware should be possible. But how about the Android software? Will there be any issues, or any considerations I need to take note of?