Re: [android-beginners] Re: ATTENTION: Android-Beginners will be permanently disabled on August 9 2010

2010-08-05 Thread Alessandro Pellizzari
Il giorno mer, 04/08/2010 alle 17.16 -0400, Jake Colman ha scritto: > This "mailing list", along with many, many others can be access via NNTP > using gmane. Pretty much any mailing list I care to follow is on gmane > and, if it isn't, it be easily added. Cool! I didn't know gmane was accessible

Re: [android-beginners] Re: Importing a keystore into Eclipse

2010-08-05 Thread TreKing
On Wed, Aug 4, 2010 at 11:23 PM, Bret Foreman wrote: > The keystore is in the .android folder but it does not show in the Export > Wizard. > "." folders are hidden by default, maybe that's why? But why put your keystore in the .android folder? I'd put it somewhere a little more under your own

[android-beginners] adb remote port forwarding

2010-08-05 Thread Gaurav Khurana
Hi, Is there a way to forward the remote port i.e. port on the android device/emulator to the local machine to which the device is connected? using adb or using any other method? I am develop an application to communicate with a desktop application over USB. The desktop application listens for con

[android-beginners] Google Maps on .apk application not showing maps

2010-08-05 Thread Ivanico
I was working on Google Maps on the emulator on my laptop and with the Google API Key everything worked perfectly. Then when I created the .apk and install it on my phone, Google Maps don't show the maps, but show the pins of my plotted places. Does anyone might know what is going on or has came a

Re: [android-beginners] Google Maps on .apk application not showing maps

2010-08-05 Thread TreKing
On Thu, Aug 5, 2010 at 11:47 AM, Ivanico wrote: > Does anyone might know what is going on or has came across this as well? > If you exported the app with your signing key, you need to generate an associated release MAP API key. Follow the instructions on the Maps API documentation page, the sect

Re: [android-beginners] Bibrate on screen touch

2010-08-05 Thread Konstantin Burov
((Vibrator) getSystemService(Context.VIBRATOR_SERVICE)).vibrate(200); You also need to request vibrate permission at manifest: -- You received this message because you are subscribed to the Google Groups "Android Beginners" group. ATTENTION: Android-Beginners will be permanently disabled o

[android-beginners] How to create directory or file into "/data/local/" directory?

2010-08-05 Thread jitendra bachhav
Hi, I want to download my apk file into "/data/local/" directory. I am able do this in external storage but unable on "/data/local" also i was trying to create folder on same location but could not do that. Through "adb push" it is possible but i need to do this java program. Regards, Jitendra.

[android-beginners] Re: Database handling - when do you open and close

2010-08-05 Thread Bender
Thanks for your reply, and sorry for my late answer. :-) I tried to get it running as a service but I don't really get how I have to use services, binders and service connections. I'm reading a book with an example for services but can't adopt it to my problem. What I tried is the following: I cr

Re: [android-beginners] Re: Database handling - when do you open and close

2010-08-05 Thread Kostya Vasilyev
Starting / binding to a service is asynchronous. You can't call bindService and expect it to be already started and bound by the next line. Call bindService and return control to Android by returning from onCreate or whatever. Your service connection callback will be invoked a little later, once t