Re: [android-developers] SQLite DB location on Windows PC

2013-09-04 Thread Michael Banzon
If you are running the app on the emulator it is stored within the filesystem that is stored within the emulator device image. If you are running the app on a physical device it is in fact stored on the device at the location you have shown. On Tue, Sep 3, 2013 at 6:49 PM, Phil Gibbs

[android-developers] Listener sound in Android?

2013-09-04 Thread Ray da Costa
Personal greetings Help. Anyone know if there is any audio listener in Android? Ie, when the Android detect a noise he does warn? -- Ray da Costa Knowing is not enough, we must apply. Willing is not enough, we must do. Bruce Lee -- You received this message because you are subscribed

[android-developers] Re: Is this OK ? (Triggering an event in an Activity from a Service)

2013-09-04 Thread RLScott
I suppose from the absence of critiques of this method that no one sees anything wrong with it. If that is the case then why have I not seen any examples using this very simple method of a service triggering an event in an activity that has bound to the service? Robert Scott Hopkins, MN --

Re: [android-developers] Not able to install Android Studio

2013-09-04 Thread Larry Meadors
JDK installed in a directory that has spaces? Windows has issues with that sometimes. Larry -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this

Re: [android-developers] Not able to install Android Studio

2013-09-04 Thread Igor G.
There are no issues with other programs using PATH variable with spaces. What should I do?? Igor On Sep 4, 2013 2:34 PM, Larry Meadors larry.mead...@gmail.com wrote: JDK installed in a directory that has spaces? Windows has issues with that sometimes. Larry -- You received this message

Re: [android-developers] Not able to install Android Studio

2013-09-04 Thread igor ganapolsky
There aren't issues with other programs on my machine using the PATH variable with spaces. What should I do? Igor On Wednesday, September 4, 2013 2:27:43 PM UTC-4, Larry Meadors wrote: JDK installed in a directory that has spaces? Windows has issues with that sometimes. Larry -- You

Re: [android-developers] Not able to install Android Studio

2013-09-04 Thread Michael Banzon
Just to clear out some of the obvious: Have you tried downloading it again? On Wed, Sep 4, 2013 at 8:38 PM, igor ganapolsky eazy...@gmail.com wrote: Here is what my Windows log manager shows: Faulting application name: android-studio-bundle-130.737825-windows.exe, version: 1.0.0.0, time

Re: [android-developers] Not able to install Android Studio

2013-09-04 Thread igor ganapolsky
Here is what my Windows log manager shows: Faulting application name: android-studio-bundle-130.737825-windows.exe, version: 1.0.0.0, time stamp: 0x4b1ae3cc Faulting module name: msvcrt.dll, version: 7.0.9200.16384, time stamp: 0x5010ae12 Exception code: 0xc41d Fault offset: 0x00015351

[android-developers] Re: Is this OK ? (Triggering an event in an Activity from a Service)

2013-09-04 Thread Streets Of Boston
Yep, this is fine for a *local* Service. For a Service that could be remote, you'd need some other way of communicating (Service sending BroadCasts to a BroadCastReceiver in/of the Activity; ResultReceiver provided by the Acivity to the Service; AIDL; etc). On Wednesday, September 4, 2013

Re: [android-developers] Not able to install Android Studio

2013-09-04 Thread Michael Banzon
Glad to hear that. And thanks for sharing the solution ;-) On Sep 4, 2013 11:00 PM, Igor G. eazy...@gmail.com wrote: Yes, many times. And finally it worked by appending %JAVA_HOME%\bin to the end of the PATH variable. On Sep 4, 2013 2:50 PM, Michael Banzon mich...@banzon.dk wrote: Just to

Re: [android-developers] Not able to install Android Studio

2013-09-04 Thread Igor G.
Yes, many times. And finally it worked by appending %JAVA_HOME%\bin to the end of the PATH variable. On Sep 4, 2013 2:50 PM, Michael Banzon mich...@banzon.dk wrote: Just to clear out some of the obvious: Have you tried downloading it again? On Wed, Sep 4, 2013 at 8:38 PM, igor ganapolsky

[android-developers] SOCKS client results in ECONNRESET by Dante

2013-09-04 Thread wolfier
Hi, Has anyone created a SOCKS network client on Android? Namely, I'm trying to simply open a network connection to an HTTP server through a Dante SOCKS server (from Ubuntu Server 12.04.3 LTS), set up to allow connection without any authentication. SOCKS server is verify to work by using

Re: [android-developers] how to access com.android.internal.telephony.CallManager ?

2013-09-04 Thread yladsr
Please don't do this - say something dogmatic when you can say something informative. On Thursday, January 20, 2011 4:38:05 AM UTC-8, Mark Murphy wrote: On Thu, Jan 20, 2011 at 5:35 AM, Harsha hars...@gmail.com javascript: wrote: Hi, I am trying to access CallManager class object from

[android-developers] can we check usb tethering and hotspot on/off in android?

2013-09-04 Thread ansal
Hi , can we check usb-tethering and hotspot on/off in android? -- You received this message because you are subscribed to the Google Groups Android Developers group. To post to this group, send email to android-developers@googlegroups.com To unsubscribe from this group, send email to

[android-developers] ActionBarCompat error

2013-09-04 Thread igor ganapolsky
All of a sudden my Android Studio is giving me the following compilation error: *cannot resolve symbol @id/actionbar_compat_title* * * This is code located in styles.xml: style name=ActionBarCompatTitleBase item name=android:id@id/actionbar_compat_title/item !--

[android-developers] Re: ActionBarCompat error

2013-09-04 Thread igor ganapolsky
It turns out that I needed *ids*, *reserved_ids*, and *attrs.xml* in my res/values folder. I had inadvertently deleted these. Now all works! On Thursday, September 5, 2013 1:20:04 AM UTC-4, igor ganapolsky wrote: All of a sudden my Android Studio is giving me the following compilation