[android-developers] Re: How to handle a "long press" on a mapview/map overlay

2008-11-13 Thread dyonis

O que voces acharam das novas musicass
- Original Message - 
From: "Amos" <[EMAIL PROTECTED]>
To: "Android Developers" 
Sent: Thursday, November 13, 2008 1:48 PM
Subject: [android-developers] How to handle a "long press" on a mapview/map 
overlay


>
> Hi,
>
> I want to be able to handle "long taps" on a mapview (or, preferrably,
> a map overlay), like LongClick events. tap events are handled by these
> classes, but I found no way to differentiate regular taps from long
> taps.
>
> I can probably implement this in the onTouchEvent method - but I don't
> want to reinvent the wheel if there's already a way to do this. Any
> ideas?
>
> Thanks!
> >
> 


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: G1 camera preview issues uncovered

2008-11-13 Thread dyonis

http://groups.google.com.br/group/grupomdo?hl=pt-BR
- Original Message - 
From: <[EMAIL PROTECTED]>
To: "Android Developers" 
Sent: Thursday, November 13, 2008 1:13 PM
Subject: [android-developers] Re: G1 camera preview issues uncovered


> 
> A bug has been filed to correct the documentation.
> 
> On Nov 13, 1:52 am, blindfold <[EMAIL PROTECTED]> wrote:
>> I hope to have clarified the importance of defining a hardware-
>> independent standard for preview images, for processing of preview
>> images by applications (i.e., image processing, computer vision,
>> augmented reality, etc). A standard preview image format is an
>> absolute requirement for making Android future-proof for when other
>> Android phones with other image sensors hit the market. Application
>> developers cannot and should not keep track of increasing diversity in
>> (future) native image sensor formats. Under Microsoft Windows too, it
>> is the responsibility of the webcam manufacturer/vendor to provide
>> drivers that offer standard VfW or WDM programming interfaces to the
>> Windows application developer, no matter what the native image sensor
>> data format is for the webcam's sensor.
>>
>> I do not care *what* standard you pick, YCbCr420SP, YCbCr422,
>> whatever, as long as there will be at least ONE documented standard
>> preview format for the data[] in onPreviewFrame() that must be
>> supported at application level by all Android camera phones, plus for
>> performance reasons matching support by BitmapFactory.decodeByteArray
>> (). Mapping between any native preview format and standard preview
>> format (in data[]) must be done at camera device driver level. Lacking
>> that, development of camera-based processing on Android phones will
>> become a maintenance headache (read: an unmanageable mess and a reason
>> to pick another platform).
>>
>> I am surprised that the Android Team does not yet indicate that they
>> will tackle this key issue. There is more to it than mere bug fixing.
>> I can today already work around the current G1 camera bugs after I
>> recently reverse engineered its peculiarities with testing help from
>> other developers represented in this group, so that is much less
>> important to me than ensuring that my (and other people's) apps will
>> not immediately break on the next Android phone because of non-
>> standardized/unspecified/unsupported camera preview formats in Google
>> Android, and the lack of a clear minimum spec with respect to required
>> support for at least one standard camera preview format.
>>
>> The Android SDK 1.0 r1 documentation for setPreviewFormat() currently
>> reads "pixel_format - the desired preview picture format
>> (PixelFormat.YCbCr_422_SP, PixelFormat.RGB_565, or PixelFormat.JPEG).
>> Apart from the asynchronous processing quirks, the T-Mobile G1
>> currently supports NONE of these documented formats (with their
>> corresponding format headers), or else one could have applied
>> BitmapFactory.decodeByteArray(). Instead, the G1 generates that
>> undocumented headerless "YCbCr 420 semi-planar" variant that one must
>> decode pixel-by-pixel at application level, and it is unclear which of
>> the documented formats an Android phone should in the future support
>> as a minimum?
>>
>> Regards
>>
>> On Nov 12, 8:10 pm, "[EMAIL PROTECTED]"
>>
>> <[EMAIL PROTECTED]> wrote:
>> > Bug reports have been responded to. Summary:
>>
>> > Camera preview is actually YCbCr 420 semi-planar. Preview frame size
>> > issues is a known bug.
> > 
>

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Inaccurate comment view in Market?

2008-11-13 Thread dyonis

http://groups.google.com.br/group/grupomdo?hl=pt-BR
- Original Message - 
From: "Nick Melnick" <[EMAIL PROTECTED]>
To: "Android Developers" 
Sent: Thursday, November 13, 2008 1:00 PM
Subject: [android-developers] Inaccurate comment view in Market?


> 
> I have one application (ElJay) in the Market that has gone through a
> few version upgrades since it was originally posted. I noticed that
> Google has merged all of the ratings and comments for the application,
> which is rather neat, but the dates are wildly inaccurate. Comments
> from the first couple of revisions, where the application was
> admittely rough, are being shown on first view of the application
> under today's or yesterday's date, leading people to believe that the
> application is fundamentally flawed. Will this be fixed, or is this
> only happening for my application?
> > 
>

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Logging to File

2008-08-28 Thread dyonis

how do I work on google
- Original Message - 
From: "Justin (Google Employee)" <[EMAIL PROTECTED]>
To: "Android Developers" 
Sent: Thursday, August 28, 2008 2:11 PM
Subject: [android-developers] Re: Logging to File


>
> The problem is with the path you suppled. By saying "droid.log", it
> will try to write to /droid.log , which you don't have write access
> to. Android applications on have write access to their subdirectory of
> the file system, generally speaking. Your code should look like this:
>
>handler = new FileHandler(getFilesDir().getAbsolutePath()
> + "droid.log", 1000, 2);
>
> Cheers,
> Justin
> Android Team @ Google
>
> On Aug 27, 4:32 am, rajesh <[EMAIL PROTECTED]> wrote:
>> I am trying to log data to my file.
>>
>> try {
>>  handler = newFileHandler("droid.log", 1000, 2);
>>  logger.addHandler(handler);
>> } catch (IOException e) {
>> // TODO Auto-generated catch block
>> e.printStackTrace();
>> }
>> LogRecord record = new LogRecord(Level.INFO, "Logged in a 
>> file..
>> 22.");
>> logger.log(record);
>>
>> I used the above code,
>> but I always get fileNotFound exception on android.
>>
>> How do I log to a file (trying out rolling file appender)
>>
>> One way to log to a file is write to file, which I am able to do it.
>> But I want to use logger api to do the same.
>>
>> Please help
> >
> 


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
Announcing the new Android 0.9 SDK beta!
http://android-developers.blogspot.com/2008/08/announcing-beta-release-of-android-sdk.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: tabhost nextfocus

2008-08-28 Thread dyonis

someone has examples of a program to Android
- Original Message - 
From: "dai" <[EMAIL PROTECTED]>
To: "Android Developers" 
Sent: Thursday, August 28, 2008 8:59 AM
Subject: [android-developers] tabhost nextfocus


>
> Hi, guys. Does anyone know how to set nextFoucsUp/Down/Left/Right
> within Tabhost View?
> I wanna move focus within each tab..
>
> Thanks in advance,
> >
> 


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
Announcing the new Android 0.9 SDK beta!
http://android-developers.blogspot.com/2008/08/announcing-beta-release-of-android-sdk.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: How to Keep Expandable List View be expanded by default?

2008-08-21 Thread dyonis

help,for how to program to google.


- Original Message - 
From: "Slater" <[EMAIL PROTECTED]>
To: "Android Developers" 
Sent: Thursday, August 21, 2008 1:26 PM
Subject: [android-developers] How to Keep Expandable List View be expanded 
by default?


>
> Hi,
>
> Does anyone know of a easy way (via coding or through xml attributes)
> to display ExpandableListView as expanded/opened by default. Any help
> is highly appreciated.
>
> Thanks,
> Snep.
>
> >
> 


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
Announcing the new Android 0.9 SDK beta!
http://android-developers.blogspot.com/2008/08/announcing-beta-release-of-android-sdk.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Adding content to a tab view dynamically

2008-08-21 Thread dyonis

help,for how to program to google.
- Original Message - 
From: "Teo" <[EMAIL PROTECTED]>
To: "Android Developers" 
Sent: Thursday, August 21, 2008 2:28 PM
Subject: [android-developers] Adding content to a tab view dynamically


>
> Hi,
>
> i tried debugging quite a bit, but i can't figure it out; is it
> possible to add something (buttons, etc.) to a tab? I'm using a
> FrameLayout inside a TabWidget inside a TabHost. I tried lots of
> things, including adding to TabHost's getCurrentTabView, but i wasn't
> lucky.
>
> Any tips?
>
> Thanks,
> Teo
> >
> 


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
Announcing the new Android 0.9 SDK beta!
http://android-developers.blogspot.com/2008/08/announcing-beta-release-of-android-sdk.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: No Bluetooth API in 0.9 or 1.0 SDK?!?!?

2008-08-21 Thread dyonis

ok, i go enter in the school of  english .
but may i join project ?(work for me)
you understand portuguese??


very thanks, you are friend!!!

- Original Message - 
From: "Justin (Google Employee)" <[EMAIL PROTECTED]>
To: "Android Developers" 
Sent: Thursday, August 21, 2008 1:12 PM
Subject: [android-developers] Re: No Bluetooth API in 0.9 or 1.0 SDK?!?!?


>
> Can you post in a *new* thread in your best language and I will use
> machine translation to try to understand your request?
>
> Thanks,
> Justin
> Android Team @ Google
>
> On Aug 21, 8:08 am, "dyonis" <[EMAIL PROTECTED]> wrote:
>> good morning,
>> i need ofdowloadaplication android for develop ,with make?
>>
>> sorry  ,my english not's good
>>
>> very tahnks,
>>
>> Dyonis Silva
> >
> 


--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
Announcing the new Android 0.9 SDK beta!
http://android-developers.blogspot.com/2008/08/announcing-beta-release-of-android-sdk.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] dowload

2008-08-21 Thread dyonis

good morning,
i need of dowload aplication android for develop ,with make?

sorry  ,my english not's good

very tahnks,

Dyonis Silva

--~--~-~--~~~---~--~~
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
[EMAIL PROTECTED]
Announcing the new Android 0.9 SDK beta!
http://android-developers.blogspot.com/2008/08/announcing-beta-release-of-android-sdk.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---