[android-developers] Android: failed to setLocale() when constructing, closing the database

2011-10-04 Thread André
XISTS " + TABLE_12); onCreate(db); } private boolean checkDataBase() { SQLiteDatabase checkDB = null; try { checkDB = SQLiteDatabase.openDatabase(DB_PATH + DATABASE_NAME, null, SQLiteDatabase.OPEN_READONLY); checkDB.close(); } ca

[android-developers] Re: Android: failed to setLocale() when constructing, closing the database

2011-10-04 Thread André
and run with it. > > Hardcoding the DB path is a bad idea - you will run into devices where the > path is different (e.g. the Galaxy S comes to mind). > > -- Kostya > > 2011/10/4 André > > > > > > > > > I'm trying to create a database with 12 differen

[android-developers] Re: Android: failed to setLocale() when constructing, closing the database

2011-10-04 Thread André
.567: Warn/DbAdapter(8904): tabel11 created! 10-04 15:01:12.567: Warn/DbAdapter(8904): tabel12 created! //André On Oct 4, 2:49 pm, Kostya Vasilyev wrote: > 04.10.2011 16:42, André пишет: > > > I had a problem where the database called onCreate every time i > > started my app and got

[android-developers] Re: Android: failed to setLocale() when constructing, closing the database

2011-10-04 Thread André
.791: ERROR/AndroidRuntime(8904): at android.app.Instrumentation.callActivityOnCreate(Instrumentation.java: 1093) 10-04 15:02:28.791: ERROR/AndroidRuntime(8904): at android.app.ActivityThread.performLaunchActivity(ActivityThread.java: 1780) 10-04 15:02:28.791: ERROR/AndroidRuntime(8904): ... 20 more Thanks //An

[android-developers] Re: Android: failed to setLocale() when constructing, closing the database

2011-10-04 Thread André
gt; This is not allowed, and causes the exception inside Andorid's database > classes. > > -- Kostya > > 04.10.2011 17:40, André пишет: > > > > > > > > > > > 15:02:28.791: ERROR/AndroidRuntime(8904): Caused by: > > java.lang.IllegalArgum

[android-developers] Re: Android: failed to setLocale() when constructing, closing the database

2011-10-04 Thread André
) passing a null value in the list of query arguments > > (the new String[] { ... arg1, arg2 ... } part). > > -- Kostya > > 2011/10/4 André > > > > > > > > > I still can't figure it out! > > > This is what I use in my main activity t

[android-developers] Best way to send data between devices?

2011-10-07 Thread André
I'm wondering if anyone can point me in a good direction to send data from my app on one device to my app in another device the best way? Was thinking about making the app connect to a online database and have it constantly check for updates. Would this be the best way? //André -- You rec

[android-developers] Re: Best way to send data between devices?

2011-10-07 Thread André
Thanks, this was exactly what i needed! On Oct 7, 10:09 am, shaman virk wrote: > make a server , if a device 'A' wants to send data to other device'B', 'A' > will send data to server and server will send data to 'B' > > use Cloud To Device Messaging "C2DM" technique for push notification from >

[android-developers] image (slide)show without images sliding, just changing

2011-10-24 Thread André
ide public void onDestroy() { super.onDestroy(); cursor.close(); db.close(); } //André -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send emai

[android-developers] get first row from cursor

2011-10-28 Thread André
cursor.moveToFirst(); while (cursor.moveToNext()) { ...} When I use this code the first row in my cursor seems to be skipped. It feels wrong to make the cursor jump back one step in while every time. How would I get the first row ? //André -- You received this message because you are

[android-developers] Re: get first row from cursor

2011-10-28 Thread André
Thanks both of you. It worked! On Oct 28, 5:35 pm, Kostya Vasilyev wrote: > 28.10.2011 19:12, André пишет: > > > cursor.moveToFirst(); > > while (cursor.moveToNext()) { > > ...} > > > When I use this code the first row in my cursor seems to be skipped. > >

[android-developers] Proguard problem

2011-11-06 Thread André
I have a problem when I'm trying to export my project in eclipse. While trying to create the apk gives me this error. What could cause this? [2011-11-06 17:29:50 - Project- X] Proguard returned with error code 1. See console [2011-11-06 17:29:50 - Project- X] java.io.FileNotFoundException: C: \an

[android-developers] Change default debug key?

2011-11-10 Thread André
run the apk for testing on my phone. So is it possible to change the default android debug key to my own private or is there another approach? //André -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To post to this group, send em

[android-developers] Re: Change default debug key?

2011-11-10 Thread André
gned with the debug certificate." If I understand this correctly it means that I can't sign it for debugging with my private key and if I can't do that I can't debug since it's not possible to upload an apk signed with the debug key. Any suggestions? //André On Nov 10, 11:46 am,

[android-developers] Re: Change default debug key?

2011-11-10 Thread André
, upload to Market. > > To debug, use DDMS to attach to the already running process. > > -- Kostya > > 10.11.2011 16:42, André пишет: > > > > > > > > > > > Thanks Francisco, > > I tried but it doesn't accept my keystore. After reading:

[android-developers] Problem adding post to database.

2011-08-01 Thread André
the main activity. Is there something I might forget or has someone had a similar problem before? //André -- 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@googlegro

[android-developers] Re: Problem adding post to database.

2011-08-01 Thread André
Nevermind, I forgot to open the dbadapter in the dialog activity. On Aug 1, 7:38 pm, André wrote: > I have two places in my code where I want to insert data to a > database. The first place is in my main activity and it works fine. > The second one is in a dialog activity which works fi

[android-developers] Problem getting string from database

2011-08-03 Thread André
Hi, I'm trying to get a string from my database. My cursor gets the right row and everything, and there is no problem to get the columnIndex. But when I use "getString" I get this exception in logcat: 08-03 14:27:42.974: ERROR/AndroidRuntime(31026): Caused by: android.database.CursorIndexOutOfBoun

[android-developers] Re: Problem getting string from database

2011-08-03 Thread André
Thanks for the quick reply. It says that there is 0 rows when using get count. Is it a problem with the row number I provide it you think? André On Aug 3, 3:01 pm, Kostya Vasilyev wrote: > Most likely, your cursor doesn't contain any data rows. Use > cursor.getCount (or cursor.mov

[android-developers] Re: Problem getting string from database

2011-08-03 Thread André
exact you think? André On Aug 3, 4:07 pm, Kostya Vasilyev wrote: > Bingo. > > Cursor data is organized into rows and columns. > > If there are zero rows, you won't be able to get any data, and it's in > fact an error to try - as you'd be asking for data from

[android-developers] Re: Problem getting string from database

2011-08-04 Thread André
illing the list as a long for every post. So when I select an item and open the context menu it takes the _id from the custom listview instead and then it works. Thanks for your suggetions! André On Aug 3, 4:58 pm, Kostya Vasilyev wrote: > Hard to say what's going on in that code, bu

[android-developers] TextToSpeech problem

2011-08-24 Thread André
0 which is success. But in the other one I get -1 no matter what I do. From what I can see the code is exactly the same but for some reason it doesn't work. The code above is from the not working one. Any suggestions? Is there a tiny permission or something I'm missing? //André -- You r

[android-developers] How to dinamically change the activity that is launched when selecting the app icon?

2008-04-20 Thread André Oriani
ps or advices to solve these situations? Tks, André --~--~-~--~~~---~--~~ 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 unsubs

[android-developers] Re: How to dinamically change the activity that is launched when selecting the app icon?

2008-04-21 Thread André Oriani
Manmath, Are you talking about using an Activity to 2 views? hackbod, But when user clicks on the app icon, the Activity for login screen will always be launched, am I right ? And did you mean ApiDemos/src/com/google/android/samples/app/ Forwarding.java ? Thanks, André On 21 abr, 02:14

[android-developers] Re: How to dinamically change the activity that is launched when selecting the app icon?

2008-04-22 Thread André Oriani
ays display the contact list or will it show the contact list(ie, the UI stack was dropped, restarting UI again) ? Thanks, André Oriani On 21 abr, 22:44, "Dan U." <[EMAIL PROTECTED]> wrote: > I think the intention is that a login screen activity will always be > launched. Yo

[android-developers] Re: How to dinamically change the activity that is launched when selecting the app icon?

2008-04-22 Thread André Oriani
ou > just have to handle the situation that you are already > logged in, in your code. > > On Apr 22, 9:45 am, André Oriani <[EMAIL PROTECTED]> wrote: > > > Can I use aActivitythat does not display nothing, ie, no calls to > > setContentView and make it manage wh

[android-developers] invoke functions of android source library (libmedia)

2010-03-10 Thread André Barbosa
dia) of android? my module is to be invoked by using the java jni.. Regards, André Barbosa. -- 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

[android-developers] LOGV

2010-03-17 Thread André Barbosa
Dear All, I'm running the mediaplayer of android and i would like to see the LOGV generated by mediaplayer, but they do not appear in logcat. these logs are stored in a file? how can I debug them? Regards, André Barbosa. -- You received this message because you are subscribed to the G

[android-developers] Re: LOGV

2010-03-24 Thread André Barbosa
logs (LOGE, LOGI, LOGD, LOGV, LOGW)? Regards, André Barbosa On 17 Mar, 16:32, André Barbosa wrote: > Dear All, > > I'm running the mediaplayer of android and i would like to see > theLOGVgenerated by mediaplayer, but they do not appear in logcat. > these logs are stored in a f

[android-developers] App crashes when trying to open but no errors in the code

2016-09-15 Thread André Bertel
I'm fairly new to Java. And I've been playing around with webview during the last couple of days. But I've encountered a problem I can't seem to solve on my own. This is the log: http://pastebin.com/KVnp4aNt And this is the activity that seems to cause the problem: http://pastebin.com/NBx0Hjx

[android-developers] How to use a brand in play store?

2016-11-14 Thread André Corrêa
How do I release my company logo for use in an app and play store? Is there a form, some contact channel? Thanks! -- You received this message because you are subscribed to the Google Groups "Android Developers" group. To unsubscribe from this group and stop receiving emails from it, send an

[android-developers] NFC P2P pattern: Receive first, via NPP, and respond after also via NPP

2011-06-01 Thread André Cruz
doing something wrong? Surely this simple use case must be possible to implement. Thanks, André -- 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 unsubscr

[android-developers] Re: Reader/Transmitter for P2P on NFC

2011-06-02 Thread André Cruz
Have you tried nfcpy? It supports LLCP and, soon, NPP. So all the bolts are there for NFC P2P. André On 25 Maio, 06:57, mduffy215 wrote: > Has anyone found a reader/transmitter for P2P onNFC. > > Basically, I want to establish a communications channel between my > Nexus S an

[android-developers] Bluetooth: Can't connect to socket on a linux box

2011-06-09 Thread André Cruz
So from the log we can see that the service is found, but for some reason the connect() fails with errno=EINVAL. I haven't rooted this Nexus S so I cannot know more about what the native code is doing, but has anyone encountered this? Connecting to another Android phone works, of course. Thanks

[android-developers] Re: Bluetooth: Can't connect to socket on a linux box

2011-06-09 Thread André Cruz
Nevermind… I was under the impression that the valid range for RFCOMM ports was 1-255 and not 1-30. André On 9 Jun, 11:12, André Cruz wrote: > Hello. > > I'm running theBluetoothChat example trying to trick it into > connecting to alinuxbox where I have a service registered w

[android-developers] Content Provider using external file storage (text file)

2011-06-09 Thread André Coelho
ied to a file on external storage. All the examples I find use Content Providers tied to database tables. Can someone please point me in the right direction or shed some coding light? (BTW, I have read the Android Developer texts on Content Providers, also, I'm using Android 2.2). Any help

[android-developers] Re: Good phone for development - and getNeighboringCellInfo()

2011-06-11 Thread André Coelho
Sorry, I think i might have mailed you a response more than once. On Jun 9, 4:21 pm, Davide Ronchi wrote: > Hi all. > > I am about to start an Android development project. I would like some > advice before starting with the project. > > First of all, I have done some research on which phone would

Re: [android-developers] Good phone for development - and getNeighboringCellInfo()

2011-06-11 Thread André Coelho
nally, from our results, I can tell you that using just GSM data doesn't provide you with very precise location data. Either use GSM+WiFi or just WiFi which have nearly identical results. Anyway, it obviously depends on how precise you want your location data to be. Regards, André Coelho 20

Re: [android-developers] Good phone for development - and getNeighboringCellInfo()

2011-06-11 Thread André Coelho
I have done something similar to what you want. I developed an application that we needed for a study. It collects GSM and WiFI data, stores it in a file that I later process with a perl script. The script sends GSM and WiFi data to Google's geolocation api and retrieves location coordinates (like

[android-developers] Re: NFC P2P pattern: Receive first, via NPP, and respond after also via NPP

2011-06-14 Thread André Cruz
stablish a connection with a Debian system and I can't seem to configure the Bluez framework there to create these insecure channels, it always requires pairing… Best regards, André On 9 Jun, 13:20, Nick Pelly wrote: > The current NPP API's do not encourage the use of NPP for > chall

[android-developers] Re: NFC P2P pattern: Receive first, via NPP, and respond after also via NPP

2011-06-15 Thread André Cruz
Nevermind… I just needed an agent on the Debian side to perform the SSP "JustWorks" pairing. Thanks, André On 14 Jun, 21:38, André Cruz wrote: > Bluetooth with createInsecureRfcommSocketToServiceRecord() or > listenUsingInsecureRfcommWithServiceRecord() would be an option, so &

[android-developers] Re: Save user options in reboot

2011-06-16 Thread André Coelho
Take a look at this http://developer.android.com/reference/android/content/SharedPreferences.html and this http://saigeethamn.blogspot.com/2009/10/shared-preferences-android-developer.html Those links will help you achieve what you want. SharedPreferences does exactly what you want. On Jun 16,

[android-developers] Speaker Problem

2012-12-18 Thread André Lima
fine in version 4.0 and lower. Version 4.1 and higher doesn't works, but I don't receive errors. Just doesn't work. Does anyone can help me with ideas? Best Regards, André -- You received this message because you are subscribed to the Google Groups "Android Developers&quo

[android-developers] Re: Speaker Problem

2012-12-19 Thread André Lima
hat's it, in version 4.1 android forces speaker off in incoming and outgoing calls. My solution is turn on the speaker in my call state broadcast receiver, after start to make a call On Tuesday, December 18, 2012 9:45:07 AM UTC-2, André Lima wrote: > > - I have the permission MODIFY_AU

[android-developers] Order latitude/longitude list by distance to my current location

2012-12-31 Thread Nelson André
Hello all, I have a JSON list that I retrive from one website I have that gives me the following fields: - Name - Latitude - Longitude This list has around 200 items. I want to order the list by distance to my current location, closer locations on top. How may I do this calculation

[android-developers] Video Calls on Android using Sipdroid

2010-10-30 Thread André Barbosa
media on Android. Best Regards, André Barbosa. -- 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-deve

[android-developers] New view for MediaController

2010-11-18 Thread André Barbosa
to do some modifications. I already tried search the R file in android source code, but i don't have success. Somebody can give me some help? I tried to find some method to modify the View object, but i don't know how i do this... Best Regards, André Barbosa. -- You received this mess

[android-developers] Help with first application

2012-09-05 Thread Nelson André
Hello all, I'm building my first application. I have a website that returns me a JSON list with name and lat/long coordinates of some locations. How can I show that list on screen with a column with the distance from my current location to each of the locations, ordered by closest on top? Tha

[android-developers] Get my SIM Phone Number

2011-01-23 Thread André Barbosa
ethod to get the SIM phone number without use the rild to get this information? Best Regards, André Barbosa. -- 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

[android-developers] Sip stack

2010-06-21 Thread André Barbosa
hi all, i need to porting a sip stack to android! after search in google and read several posts in android groups, i think that the best choice is sofia-sip or PJSIP. At this time, i think in use the PJSIP! what is your opinion? after download the PJSIP, i saw your code and i understand how compil

[android-developers] Compile Sip Stack

2010-07-07 Thread André Barbosa
hi, anyone could compile some SIP Stack in C/C++ along with Android source code? Note: i am referring not to compile the Sip Stack with ndk, but compile with all the code of the Android plataform. best Regards. -- You received this message because you are subscribed to the Google Groups "Androi

[android-developers] Preventing surface resize on orientation change

2011-02-15 Thread André Santee
I'm making a game with direct OpenGL rendering and I want my menu always to be vertical. Is there a way I can prevent the phone to reset it's surface on orientation change? Regards, André. -- You received this message because you are subscribed to the Google Groups "Android De

[android-developers] Streaming mp3 file with RTSP protocol

2010-12-05 Thread André Barbosa
hi all, I am trying play a mp3 stream file using rtsp protocol. To do this i am using the DarwinStreamingSrvr as a RTSP server and mediaplayer to play the RTSP link. I already tried play the mp4 video file and i didn't had any problems. However, when i try play the mp3 file i don't have sucess and

[android-developers] Define what activity will start the task on Recent Apps menu

2009-12-21 Thread André Oriani
The Recent menu apps( the one after a long home key preess) can do two things: 1- If the task for the app is still running it will the resume the activity on the top of the stack of the task 2 - Otherwise it launches the activity that has started the task, no matter if it is not the the activity w

[android-developers] Re: Will the droid with andoid 2.0 get updates that give us more home screens>?

2009-12-21 Thread André Oriani
Have you heard of Moto CLIQ with Motoblur ? So it has 7 screens On 8 nov, 17:18, Scott Diener wrote: > I love mydroid. > > But it seems unfair that the best android device has the least amount > of home screens. > > Three isnt nearly enough. > > The HTC eris has seven. > > The hero has 10 > > Wha

[android-developers] How to hack the activity stack of your application ?

2009-12-28 Thread André Oriani
ation is killed ? Tks, André -- 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+unsubscr...@

[android-developers] Re: How to hack the activity stack of your application ?

2009-12-28 Thread André Oriani
finish() on each of you activities in the stack. > This should result in the behavior you are looking for I believe, > because the system would be forced to create a new instance of your > application, thus starting a new service with it. > > -theSmith > > On Dec 28, 10:35 am, A

[android-developers] Power Down

2009-08-17 Thread André Oriani
Is possible to know when a device is about to power down? Is there any intent like BOOT_COMPLETED for that ? Thanks, André --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To po

Re: [android-developers] CallLog.Calls.DURATION value is not showing exact Active call duration it considers ringing time as well

2015-01-26 Thread André L
I notice the same and I am trying to find out a solution Em 19/01/2015 07:25, "Aruna" escreveu: > Hello, > > I am trying to fetch the call duration from CallLog.Calls table, below 5.0 > (Lollipop) releases the call DURATION is considered only when the call is > accepted by other party, but in the

[android-developers] Re: (Full) NFC support for Android (on a Nexus S, specifically)

2011-04-20 Thread André Cruz
Is it possible, with the current android API, to communicate using peer-to-peer NFC with a desktop reader/writer using libnfc? Thanks, André On 4 Abr, 15:15, Nick Pelly wrote: > We're not in a hurry to add public API's for Card Emulation. It is a > developers nightmare because m

[android-developers] How does Morelocale 2 works?

2011-03-28 Thread André Mariano
Hi guys, I'm trying to understand how Morelocale 2 works, How does it change the language of the android system? Well, I want to do a "Language pack" for my brothers that don't know English, But I have no idea how to start, because the only apps I developed, didn't change anything of the system --

[android-developers] Help/collaboration needed from Dianne or someone at the Android team in explaining some results on a mobile computing project/article on time-shifted location

2011-12-23 Thread André Coelho
Hello. I'm an MSc student at University of Minho, Portugal and I'm currently involved in a *Mobile Computing project* in which we use +Android to facilitate conducting *user experience studies* and gathering various data. We devised a method for gathering *location information*, powered by Android

[android-developers] Re: maps api and 1.5

2009-04-21 Thread André Charles Legendre
Hi I get the same problem, and changed the build target to be the Google API, then I create an AVD for Google Api and finaly I get : Unable to resolve superclass of Lorg/example/android/apis/MapViewDemo; where org.example.android.apis is the package and MapViewDemo is a copy of MapViewDemo.java

[android-developers] Re: maps api and 1.5

2009-04-21 Thread André Charles Legendre
Hi Finally, my error was to left maps.jar in the classpath Now, this very simple Map app with 1.5 SDK launch good Thank for all the responses. It helps a lot. Andre --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] apk installation on mobilefromLinux machine

2009-09-14 Thread André Charles Legendre
Hi I want to install an application apk from a Linux machine to a mobile phone (Samsung Galaxy) When I run adb install from Linux (Kubuntu 9.04), I get a message telling : no device found. Any Idea welcome Andre --~--~-~--~~~---~--~~ You received this message bec

[android-developers] Re: apk installation on mobilefromLinux machine

2009-09-14 Thread André Charles Legendre
Hi Thank's to Dilli and Tauno I have enabled USB debugging. When I do adb devices I get no devices. If I look in /var/log/messages I see that mobile is detected when it is connected. The system give it a disk alias (sdb) and a network alias /dev/ttyACM But no devices is detected by adb. An

[android-developers] Re: apk installation on mobilefromLinux machine

2009-09-14 Thread André Charles Legendre
Hi Mark and Zero I run on Kubuntu 9.04 but with 1.5_r3 And I get : Sep 14 14:54:38 REN027 kernel: [23036.364023] usb 1-3: new high speed USB device using ehci_hcd and address 10 Sep 14 14:54:38 REN027 kernel: [23036.509774] usb 1-3: configuration #2 chosen from 1 choice Sep 14 14:54:38 REN027 ke

[android-developers] Re: apk installation on mobilefromLinux machine

2009-09-14 Thread André Charles Legendre
Hi Mark I installed android-sdk-linux_x86-1.5_r3 and it changed nothing. I will try to apply the patch from : http://androidforums.com/support/3534-problems-mounting-communicating-g1-ubuntu.html Andre --~--~-~--~~~---~--~~ You received this message because you ar

[android-developers] Re: apk installation on mobilefromLinux machine

2009-09-14 Thread André Charles Legendre
Hi Mark adb with the patch succeed to install my apk. But adb logcat give to me : logcat read: Invalid argument With the standard adb and with the patched adb. Andre --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups

[android-developers] Re: apk installation on mobilefromLinux machine

2009-09-14 Thread André Charles Legendre
adb. then I had to stop and start it : adb kill-server followed by adb start-server then adb install and adb devices worked with my Samsung Galaxy from Kubuntu. Thank's a lot for your help. Andre On 9/14/09, André Charles Legendre wrote: > Hi Mark > > I installed android-sdk-linux_

[android-developers] Re: apk installation on mobilefromLinux machine

2009-09-14 Thread André Charles Legendre
Hi Finally to get logcat working I had to uncheck and check again the debug option in the application settings. Thank's for all Andre --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android Developers" group. To p

Re: [Fwd: [Fwd: [Fwd: [android-developers] Re: apk installation on mobilefromLinux machine]]]

2009-09-15 Thread André Charles Legendre
Hi Dan For what I haved experimented with my Galaxy from Kubuntu 9.04 : I had to use the patched adb, dowloded from : http://floe.butterbrot.org/external/adb.gz the standard adb from android-1.5r3 did'nt detect the phone. I had to put the following line in /etc/udev/rules.d/51-android.rules: SUBS

[android-developers] Re: How to broadcast an intent?

2008-06-16 Thread André Charles Legendre
Pierre >From your Activity : (see Activity class methods broadcastIntent). broadcastIntent(intent). Don't forget to add your intent to the filter in the receiver side. Or your receiver will not receive it. Andre On Mon, Jun 16, 2008 at 12:33 PM, Diego Torres Milano <[EMAIL PROTECTED]> wrote: >

[android-developers] Re: Story you might be interested in

2008-06-16 Thread André Charles Legendre
Hi Vasanth Very happy to see somebody speaking about Android in the press. I would like to give 3 comments : 1) Sun is going to deliver Java on iPhone so language limit is going to fell down...http://www.appleinsider.com/articles/08/03/08/sun_plans_java_for_iphone_ipod_touch.html 2) Better to h

[android-developers] Re: Story you might be interested in

2008-06-16 Thread André Charles Legendre
Hi Mark News in Goggle I/o was not dedicated to Android Community. It was a show for medias and newspaper. This is good but this does not demonstrate any interest in Android community from Android team. Is it so difficult to spend 5 minutes every week ?? Blocking sdk release without any good ex

[android-developers] Re: Story you might be interested in

2008-06-16 Thread André Charles Legendre
Hi Mark Yes we have fairly good newspapers. But VM internal of what Dalvik version ? the public one ? What is the interest to know internal of a tool you are not allowed to use ? Saying that this presentation was dedicated to Android community is a joke : Very few of java users have any interest

[android-developers] Re: SDK Update?

2008-06-29 Thread André Charles Legendre
I would like to say that for Android community it would be a must if we could get new SDK releases. I think that Android team should go to the following link at FSF.org http://www.fsf.org/licensing/licenses/gpl-faq.html#WhyDoesTheGPLPermitUsersToPublishTheirModifiedVersions You would find the

[android-developers] Re: SDK Update?

2008-06-29 Thread André Charles Legendre
Hi You will find below a question and its answer coming from : http://www.fsf.org/licensing/licenses/gpl-faq.html#DoesTheGPLAllowNDA Does the GPL allow me to distribute copies under a nondisclosure agreement? No. The GPL says that anyone who receives a copy from you has the right to redi

[android-developers] Re: SDK Update?

2008-06-29 Thread André Charles Legendre
Hi You will find below a question and its answer coming from : http://www.fsf.org/licensing/licenses/gpl-faq.html#DoesTheGPLAllowNDA Does the GPL allow me to distribute copies under a nondisclosure agreement? No. The GPL says that anyone who receives a copy from you has the right to redi

[android-developers] Re: SDK Update?

2008-06-29 Thread André Charles Legendre
Hi Shane yes GPL limits NDA. It seems that Android OS should not be published to anybody (Challenge winners, phone operators, phone manufacturers etc..) against any NDA. Android OS is mainly GPL as it is coming from linux. SDK is mainly Apache V2 license. But as Java is GPL2 now (not specs but

[android-developers] Re: SDK Update?

2008-06-30 Thread André Charles Legendre
Hi If Android OS has not been improved from February it would be even worse. I would mean that this project is not well and alive. If we consider that SDK is not an Open Source project it would solved also many issues but it would mean that the code is all new and not tested and I am not sure th

[android-developers] Re: SDK Update?

2008-06-30 Thread André Charles Legendre
Hi Joa You seems to forget the main things : Does Android SDK need to be open source as using a lot of Open Source code ? If yes are Open Source licenses compatible with NDA ? It seems that SDK use GPL code and should not be published under NDA. It even seems that NDA is not compatible wit ope

[android-developers] Re: SDK Update?

2008-06-30 Thread André Charles Legendre
Hi Shane Open Source Initiative consider that to be "open source" a project cannot be published under NDA. (see below) http://www.opensource.org/osr The question is : is Open Source Initiative stupid to ask for this requirement ? Look at the board members before to say that they are stupid : htt

[android-developers] Re: SDK Update?

2008-06-30 Thread André Charles Legendre
It seems that we have not the same way to read this : # No Agreements: There MUST NOT be any requirement for execution of a license agreement, NDA, grant, click-through, or any other form of paperwork to deploy conforming implementations of the standard. But it seems that many people have the sa

[android-developers] Re: SDK Update?

2008-06-30 Thread André Charles Legendre
Hi Digit First of thank's to brake this wall of silence which hurt all of us. This silence is probably the biggest pain for us. Why not publish new SDK release ? Why not publish some news to the community ? Regards Andre Legendre --~--~-~--~~~---~--~~ You recei

[android-developers] VM crash in mobile for a code good working in Emulator

2009-09-30 Thread André Charles Legendre
I get stuck from one week to find a solution for a VM crash in a Samsung Galaxy running a code good working with emulator. (I don't know if this code works in any real device) Initialy my code line crashing the VM was : responseString = EntityUtils.toString(response.getEntity()); This code works

[android-developers] VM crash

2009-09-30 Thread André Charles Legendre
Android VM crash in a Samsung Galaxy running a code good working with emulator. My code call facebook rest service to get my friends info. But when I get server response VM crash. And I really need help. Log is down here : D/UiHandler( 1488): executeMethodForMessage mFacebook.execute AFTER I/glob

[android-developers] Re: VM crash

2009-09-30 Thread André Charles Legendre
Hi fadden Yes it is a reproducible case. Exact content of the log change but it always finish by "logcat read: Invalid argument" and I need to restart the mobile to be able to read any log again. It seems that something is getting twisted up in the logging. I will try to file a bug. Andre --~-

[android-developers] Re: VM crash

2009-10-06 Thread André Charles Legendre
Hi Thank's a lot, by now I reboot the phone to clear the log and I lose a lot of time... With this solution it will be faster.. I will fill the bug now. Andre --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups "Android

[android-developers] Re: How to pass data between activities?

2008-06-09 Thread André Charles Legendre
Hi Pierre Best way is to use intents You create an intent, You put your data in a bundle you add to your intent. you broadcast your intent on the receiver side you add this intent to intent filter And you add a case in the intentReceiver switch You get your bundle from your intent then your data

[android-developers] Re: Secure area inside android

2008-06-10 Thread André Charles Legendre
Hi You have the keystore of the browser. You can access it from a WebView. Andre On Tue, Jun 10, 2008 at 6:04 PM, Justin (Google Employee) <[EMAIL PROTECTED]> wrote: > > If the keystore file is password protected, why not store it > encrypted? Then have the user enter her password to start usin

[android-developers] .Net Web Service keeps receiving null parameters from Android application using ksoap2

2012-07-22 Thread Jacques André Labuschagne
I have a .Net Web Service running on IIS v6 on a Windows XP 64 laptop connected to a wifi network at home called intellinet. Now the .Net WS is running on the laptop with the ip address 192.168.2.103. The laptop is also running an SQL Server 2008 sp3 by means where the WS can communicate with i

[android-developers] Android magnetometer sampling rate improvement/jitter reduction

2012-09-29 Thread André Costa Lima
I'd like to ask for some help regarding the sampling rate and jitter on the magnetometer. I'm working on a project with some people that involves a high rate magnetic field sampling application. Even though we have developed an algorithm to workaround the jitter and other issues we encountered,

[android-developers] Httpclient with Nexus S

2011-01-13 Thread André Charles Legendre
Hi I avec a connection problem with httpClient specificaly in Nexus one I have this line of coe working on any Android devices but in NexusS it works only in 3G String res = getHttpClient().execute(mHttpPost, new BasicResponseHandler()); Any idea welcome Andre -- You received this message b

[android-developers] Re: Android v. 1.5 = FAIL #2: Directly Manipulating Settings

2009-04-24 Thread André Charles Legendre
Hi Jean Batiste It seems that a better way would be to have a list of applications allowed to make GPS status changes. So user would be prompted one time to say if he allow or not this application to change GPS status. And to be able to consult and change the list of applications allowed to do so

[android-developers] problem with KeyEvent.KEYCODE_PLUS in SDK 1.5pre

2009-04-26 Thread André Charles Legendre
When I Override onKeyDown in a MapActivity I have a problem with KeyEvent.KEYCODE_PLUS. When running my app "+" just don't work. The same code works for any key but KeyEvent.KEYCODE_PLUS. In log I get W/KeyCharacterMap( 725): No keyboard fo id 0 W/KeyCharacterMap( 725): Using default keymap: /s

[android-developers] Re: problem with KeyEvent.KEYCODE_PLUS in SDK 1.5pre

2009-04-26 Thread André Charles Legendre
Hi Diane Tank's for the answer. What keys are usually mapped for zoomIn and zoomOut in Android devices ? And what physical key is associated to the logical KEYCODE_PLUS ? Regards Andre --~--~-~--~~~---~--~~ You received this message because you are subscribed

[android-developers] Saving battery with MyLocationOverlay

2009-04-27 Thread André Charles Legendre
Hi When we manage Location using a Location Manager we can limit updates to save battery by changing MINIMUM_TIME_BETWEEN_UPDATE, and/or MINIMUM_DISTANCECHANGE_FOR_UPDATE : myLocationManager.requestUpdates(provider, MINIMUM_TIME_BETWEEN_UPDATE, MINIMUM_DISTANCECH

[android-developers] Re: "R cannot be resolved" after updating to 1.5 SDK Pre, and trying to compile for 1.1

2009-04-27 Thread André Charles Legendre
I got similar problems with SDK on Linux. I solved it by adding tools directory in PATH. Regards Andre --~--~-~--~~~---~--~~ 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] Re: "R cannot be resolved" after updating to 1.5 SDK Pre, and trying to compile for 1.1

2009-04-28 Thread André Charles Legendre
Hi hc Under Unix to add tools directory to PATH you can do it in .bash_profile of your user : PATH=$PATH:/tools export PATH where xxx is the PATH of where you put the SDK Andre --~--~-~--~~~---~--~~ You received this message because you are subscribed to the

<    1   2   3   >