[android-developers] Keyboard log for reference

2010-10-21 Thread Android Test
Hi All, I want to write an application that will log down whatever I type using the Android keyboard. The purpose is to have a backup of all the keyboard entries. Is it possible? Regards. -- You received this message because you are subscribed to the Google Groups Android Developers group.

[android-developers] Undeletable SMS

2010-11-25 Thread Android Test
Hi All, How to save an received SMS in another location (e.g. SD card) and make it no deletable? Assuming this received SMS contains important message (Like username) which will be required in the future. Regards. -- You received this message because you are subscribed to the Google Groups

[android-developers] Retrieving GPS coordinates when location services are not enabled

2012-11-21 Thread Android Test
Hi All, Assuming the device's Use Wireless networks and Use GPS satellites settings under Location is not enabled, is it possible to still retrieve the location coordinates. Currently, the best is to redirect the user to the settings page is not enabled. I find this disruptive as needs to

[android-developers] Write to another application's internal memory

2012-11-26 Thread Android Test
Hi All, I have 2 applications with different package names. E.g. App1 and App2. App1 needs to write some files to App2's internal memory so that it could be uploaded to the backend. I have used the following in App1 to do so: filePath = getPackageManager().getPackageInfo(app2.package.name,

Re: [android-developers] Re: Write to another application's internal memory

2012-11-27 Thread Android Test
:27 AM UTC-6, Android Test wrote: Hi All, I have 2 applications with different package names. E.g. App1 and App2. App1 needs to write some files to App2's internal memory so that it could be uploaded to the backend. I have used the following in App1 to do so: filePath = getPackageManager

Re: [android-developers] Re: Write to another application's internal memory

2012-12-03 Thread Android Test
Hi All, Thanks for all the advice. I used android:sharedUserId in the android manifest and now is able to write across the app's internal memory. As my only purpose is to write text files (no sharing etc is involved), I found this the most easiest to implement. On Thu, Nov 29, 2012 at 5:37 PM,

Re: [android-developers] Re: Write to another application's internal memory

2012-12-04 Thread Android Test
On Mon, Dec 3, 2012 at 2:23 PM, Android Test aandroidt...@gmail.comwrote: Hi All, Thanks for all the advice. I used android:sharedUserId in the android manifest and now is able to write across the app's internal memory. As my only purpose is to write text files (no sharing etc

[android-developers] Receive SMS in Android 2.3 vs Android 4.0

2012-12-04 Thread Android Test
I have written an SMS app to receive SMSes using the various samples available online. I tested it in a Android 2.3 device and it was working perfectly. Now, I changed the API level to Android 4.0 and tried running it on an Android 4.0 device and nothing happens. I checked the logcat in