Re: [android-developers] Re: device shaked? accelerometer once more

2012-10-14 Thread axel
How did you determine the values for a0, a1, a2, b1, b2? I understand that a period of 83 ms results in a frequency of 12 Hz but how do I select base frequency and bandwith etc.? The dspguide does not explain this either ... Axel On Friday, February 12, 2010 7:44:39 AM UTC+1, Frank Weiss wrote

[android-developers] Re: Problems to get Latitude/Longitude from a picture

2011-07-11 Thread Axel B
(ExifInterface.TAG_DATETIME); The first line causes an error : can’t open ‘/mnt/sdcard/DCIM/100MEDIA/ IMAG0001.jpg’ I tried several different paths, it's strange, all the examples I found on the web were using this path... A little help would be great! :) Thanks in advance. Axel On 21 juin, 09:52, Axel B axel.bour

[android-developers] Re: Problems to get Latitude/Longitude from a picture

2011-07-11 Thread Axel B
? On Mon, Jul 11, 2011 at 2:25 PM, Axel B axel.bour...@gmail.com wrote: Okay, now I tried to read the EXIF infos of my pictures but I stil have an error, apparently a problem of path. Here is the code : File myFile = new File(/sdcard/DCIM/100MEDIA/IMAG0001.jpg); ExifInterface exif

[android-developers] Re: Problems to get Latitude/Longitude from a picture

2011-06-21 Thread Axel B
Thank you for your answer, I will try that. On 15 juin, 15:16, Streets Of Boston flyingdutc...@gmail.com wrote: Have you tried to read the images' EXIF information for the longitude/latitude? -- You received this message because you are subscribed to the Google Groups Android Developers

[android-developers] Problems to get Latitude/Longitude from a picture

2011-06-15 Thread Axel B
(MediaStore.Images.ImageColumns.TITLE)); } And so, when I print longitude and latitude, they are set to null, whereas other informations seem to be good, as title, date taken, etc. Do you have an idea? In advance, thank you for your help. Axel -- You received this message because you are subscribed

[android-developers] Re: TabActivity not the main activity

2011-04-23 Thread Axel B
22, 2011 at 5:19 AM, Axel B axel.bour...@gmail.com wrote: Hello everyone, I hope someone will be able to help me with this issue. I'm developing a program that starts with a first Activity, which is my welcome screen. I would like to call an activity from here (using a start button

[android-developers] TabActivity not the main activity

2011-04-22 Thread Axel B
when I do so (program stops unexpectedly). Plus I don't see any examples where a TabActivity is not the main activity of the program. Hence, I really wonder if this is possible. Anyone can help me? Thanks by advance. Axel -- You received this message because you are subscribed to the Google

[android-developers] about my last message

2011-04-22 Thread Axel B
Sorry about my last message, problem solved ! It was something really stupid, I apologize. -- 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

[android-developers] Re: Drawings of View.onDraw() sometimes not shown when canvas was rotated

2010-03-12 Thread axel
Since I did not find a way to rotate the canvas and always display the drawing I'm calculating the position of the rotated points myself now. For this I found the following information really helpful: http://stackoverflow.com/questions/786472/rotate-a-point-by-an-angle Axel On 7 Mrz., 10:55

[android-developers] Drawings of View.onDraw() sometimes not shown when canvas was rotated

2010-03-07 Thread axel
- both using Android 1.6. Axel public class NoMapView extends View { private int angle; private Paint paint; public NoMapView(Context context) { super(context); } public NoMapView(Context context, AttributeSet attrs, int defStyle) { super(context, attrs

[android-developers] Re: How to get all contact's name phone number, email for 2.0

2009-11-26 Thread axel
a force close (doesn't look pretty mature to me). The sad thing is that I have an application on the market and receive complains about force close errors when contacts are accessed but I'm unable to reproduce it with AVD. Axel -- You received this message because you are subscribed to the Google

[android-developers] Re: How to get all contact's name phone number, email for 2.0

2009-11-26 Thread axel
on their phone but if Google doesn't ensure that event deprecated APIs, it is not my fault. If many developers (especially of free applications) think likewise user will experience a increasing number of non-working applications in the Android market. But thanks for your reply anyway :-) Axel -- You

[android-developers] Re: Bug? Geo fix and sdk 1.5

2009-06-26 Thread axel
test --~--~-~--~~~---~--~~ 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] Re: Bug? Geo fix and sdk 1.5

2009-06-26 Thread axel
With SDK 1.5r1 I had this problem using an AVD for Android 1.1 (target id 1). When I use an AVD for Android 1.5 (target id 2) I don't experience this problem - the locations received by the onLocationChanged() reflect the location entered via geo fix Axel