[android-developers] How to broadcast an intent?

2008-06-16 Thread Pierre

Hi,all

Anybody can tell me how to broadcast an intent?

Thanks in advance!

Pierre
--~--~-~--~~~---~--~~
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 M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Why is Android/Eclipse so unreliable?

2008-06-16 Thread Diego Torres Milano

Personally, I've found much more reliable the combination ADT/Eclipse/
Ubuntu than ADT/Eclipse/Windows Vista.
Some problems, like the infamous 19% launch of death, never happened
to me in Ubuntu.
You should give it a try.

On Jun 15, 9:44 pm, Nickname <[EMAIL PROTECTED]> wrote:
> By the way, old log messages of prior application instance are often
> shown on the re-opened LogCat window, which is very annoying.
>
> Besides manually typing in "logcat -c" command in adb console, can
> somebody teach me how to clean log messages of prior application
> instance?
>
> On Jun 14, 11:29 am, Nickname <[EMAIL PROTECTED]> wrote:
>
> > Sometimes, Eclipse refuses to build my application on the first boot-
> > up, so I have to reboot Eclipse again and again to fix the problem.
>
> > Often, DDMS/adb fails to connect with Android emulator when I click
> > Run menu, so I have to kill adb and re-Run my application to launch
> > another emulator to get them right.
>
> > Always, the current LogCat prospective loses log messages after
> > application is re-Run.
>
> > Is it possible to fuse Android SDK with Eclipse more precisely???
>
> > Nick
--~--~-~--~~~---~--~~
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 M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



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

2008-06-16 Thread Diego Torres Milano

You may find this post (http://dtmilano.blogspot.com/2008/03/android-
playing-with-intents-this.html) useful.

On Jun 16, 11:11 am, Pierre <[EMAIL PROTECTED]> wrote:
> Hi,all
>
> Anybody can tell me how to broadcast an intent?
>
> Thanks in advance!
>
> Pierre
--~--~-~--~~~---~--~~
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 M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[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:
>
> You may find this post (http://dtmilano.blogspot.com/2008/03/android-
> playing-with-intents-this.html) useful.
>
> On Jun 16, 11:11 am, Pierre <[EMAIL PROTECTED]> wrote:
>> Hi,all
>>
>> Anybody can tell me how to broadcast an intent?
>>
>> Thanks in advance!
>>
>> Pierre
> >
>

--~--~-~--~~~---~--~~
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 M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Passing String between applications

2008-06-16 Thread simo

Hi,

what is the best way to pass one String value between 2 applications?

I have read the doc about the ContentProvider but I do not really need
a database and instanciating all these objects involves an unnecessary
additional amount of memory.

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 M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: How to setStyle programmatically?

2008-06-16 Thread Hong
bump up... I'm trying to find out as well, anyone else knows?

thanks

On Sun, Jan 20, 2008 at 5:07 PM, Kennard Consulting <
[EMAIL PROTECTED]> wrote:

>
> Chazman,
>
> Thanks for your response.
>
> No, sorry for not being clear. I mean how, in the XML I can do...
>
>   
>
> ...what is the equivalent of this in code? I realize using TextView in
> this example is misleading (because of Spannables). It would be just
> as relevant to say how do I do the equivalent of this in code:
>
>   
>
> Regards,
>
>

--~--~-~--~~~---~--~~
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 M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Passing String between applications

2008-06-16 Thread Mark Murphy

> what is the best way to pass one String value between 2 applications?
>
> I have read the doc about the ContentProvider but I do not really need
> a database and instanciating all these objects involves an unnecessary
> additional amount of memory.

I'll refer to your two applications as Application A and Application B.

If Application A is the one responsible for starting Application B, and
the string needs to pass from A to B at startup, put the string as an
"extra" in the Intent you use to start Application B (via startActivity()
or startSubActivity()), and have Application B read that "extra" from the
Intent when it starts up.

If Application A is launching Application B via startSubActivity(), and
the string needs to pass from B to A when B completes, use a flavor of
setResult() in B that lets you provide the string as part of the results,
which A will get in onActivityResult().

Otherwise, you can always set up an intent receiver on A and/or B,
depending on who is setting the string and who is receiving updates to the
string. The one who "sets" the string does so by sending a broadcast
Intent that gets picked up by the other's intent receiver, with the string
value as an "extra".

If these are really just two activities in the same application, you have
a lot more options, including SharedPreferences, SQLite database, or even
flat files.

There are probably other options as well, but those are the ones I can
think of off the top of my head.

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com
_The Busy Coder's Guide to Android Development_ -- Available Now!


--~--~-~--~~~---~--~~
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 M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Story you might be interested in

2008-06-16 Thread Vas -- Silicon Alley Insider

Hi all, I wrote a story about Android on Silicon Alley Insider.

http://www.alleyinsider.com/2008/6/three_reasons_why_android_developers_aren_t_flocking_to_the_iphone

Read it and let me know what you think.
--~--~-~--~~~---~--~~
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 M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] IntentDemo

2008-06-16 Thread Damien

Hi

I have recorded my second screencast which talks at a very basic level
about Intents. here is the link

http://blip.tv/file/997147

The sound quality is unfortunately low and I am trying to remedy that
for my subsequent demonstrations. Any of your [other] comments /
criticisms are most welcome. Simply visit http://sleepydroid.blogspot.com
and drop me an email.

Regards
D.
--~--~-~--~~~---~--~~
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 M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[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 have a walled garden than no garden at all...
3) 8.75 million not reachable is like nothing. 150 million founded
around iPhone reachable is not so bad and 150 million around RIM is
not so bad and millions of customers is a lot more...

Just one question is Android alive ?
We (standard developers) have no news (nothing) from months.
If Android team still exist for Android community (some of us are
still interested), Android community probably not exist anymore for
Android team.

Our value is less than a post in any blog, any forum, zero...

Why ? Understand who can...

Andre Charles Legendre

On Mon, Jun 16, 2008 at 6:59 PM, Vas -- Silicon Alley Insider
<[EMAIL PROTECTED]> wrote:
>
> Hi all, I wrote a story about Android on Silicon Alley Insider.
>
> http://www.alleyinsider.com/2008/6/three_reasons_why_android_developers_aren_t_flocking_to_the_iphone
>
> Read it and let me know what you think.
> >
>

--~--~-~--~~~---~--~~
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 M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



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

2008-06-16 Thread Mark Murphy

> Just one question is Android alive ?

Sure seems that way.

> We (standard developers) have no news (nothing) from months.

If by "months" you mean "a few weeks", then perhaps that's true.

Google I/O had a fair bit about Android, some of which was picked up by
the press. You can watch the sessions at:

http://sites.google.com/site/io/

They have reiterated that devices should be available by the end of the
year. While there has been no new SDK release recently, that's in line
with what we have found out -- the ADC winners are kicking the tires on
newer SDK builds before the public gets them.

So, I'm not quite sure why you think we have had "no news" "from [sic]
months".

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com
_The Busy Coder's Guide to Android Development_ -- Available Now!


--~--~-~--~~~---~--~~
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 M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



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

2008-06-16 Thread Shane Isbell
Google doesn't control the carrier networks and they don't make devices; so
on that front, they can't have anything to report. They have the SDK and
some upcoming services, like the App Market. It has been leaked (no
announcement) that Google will not release the SDK to the general community
for sometime. Google has indicated they are working on things like the
App Market.

I'm not making excuses for Google or kissing their ass here. I think their
SDK move was a big mistake and has caused damage to the community, but
without releasing an SDK, what do they have to report?

Shane

On Mon, Jun 16, 2008 at 9:41 AM, Mark Murphy <[EMAIL PROTECTED]>
wrote:

>
> > Just one question is Android alive ?
>
> Sure seems that way.
>
> > We (standard developers) have no news (nothing) from months.
>
> If by "months" you mean "a few weeks", then perhaps that's true.
>
> Google I/O had a fair bit about Android, some of which was picked up by
> the press. You can watch the sessions at:
>
> http://sites.google.com/site/io/
>
> They have reiterated that devices should be available by the end of the
> year. While there has been no new SDK release recently, that's in line
> with what we have found out -- the ADC winners are kicking the tires on
> newer SDK builds before the public gets them.
>
> So, I'm not quite sure why you think we have had "no news" "from [sic]
> months".
>
> --
> Mark Murphy (a Commons Guy)
> http://commonsware.com
> _The Busy Coder's Guide to Android Development_ -- Available Now!
>
>
> >
>

--~--~-~--~~~---~--~~
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 M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[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 explanation is also not very
typical of "Open Source Projects"

If you have another example, just let me know.

I am sure, Mark, that Android team will want to support here what you say.
And this will close in a very nice way our doubts.

Regards

Andre Charles Legendre
On Mon, Jun 16, 2008 at 7:41 PM, Mark Murphy <[EMAIL PROTECTED]> wrote:
>
>> Just one question is Android alive ?
>
> Sure seems that way.
>
>> We (standard developers) have no news (nothing) from months.
>
> If by "months" you mean "a few weeks", then perhaps that's true.
>
> Google I/O had a fair bit about Android, some of which was picked up by
> the press. You can watch the sessions at:
>
> http://sites.google.com/site/io/
>
> They have reiterated that devices should be available by the end of the
> year. While there has been no new SDK release recently, that's in line
> with what we have found out -- the ADC winners are kicking the tires on
> newer SDK builds before the public gets them.
>
> So, I'm not quite sure why you think we have had "no news" "from [sic]
> months".
>
> --
> Mark Murphy (a Commons Guy)
> http://commonsware.com
> _The Busy Coder's Guide to Android Development_ -- Available Now!
>
>
> >
>

--~--~-~--~~~---~--~~
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 M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



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

2008-06-16 Thread [EMAIL PROTECTED]

It appears that Google is helping people that actually do work.
Quietly on this forum. If you are thorough in looking through the body
of answers already provided and have a question that grows the
knowledge base with an answer, people seem to be getting answers.
Also the bugs/enhancement list is getting attention -even though we
don't always see eye to eye on the value of good an uniform user
interfaces.

So developers who are actually working to get stuff done are getting
answers.

On Jun 16, 12:23 pm, "André Charles Legendre"
<[EMAIL PROTECTED]> wrote:
> 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 explanation is also not very
> typical of "Open Source Projects"
>
> If you have another example, just let me know.
>
> I am sure, Mark, that Android team will want to support here what you say.
> And this will close in a very nice way our doubts.
>
> Regards
>
> Andre Charles Legendre
>
>
>
> On Mon, Jun 16, 2008 at 7:41 PM, Mark Murphy <[EMAIL PROTECTED]> wrote:
>
> >> Just one question is Android alive ?
>
> > Sure seems that way.
>
> >> We (standard developers) have no news (nothing) from months.
>
> > If by "months" you mean "a few weeks", then perhaps that's true.
>
> > Google I/O had a fair bit about Android, some of which was picked up by
> > the press. You can watch the sessions at:
>
> >http://sites.google.com/site/io/
>
> > They have reiterated that devices should be available by the end of the
> > year. While there has been no new SDK release recently, that's in line
> > with what we have found out -- the ADC winners are kicking the tires on
> > newer SDK builds before the public gets them.
>
> > So, I'm not quite sure why you think we have had "no news" "from [sic]
> > months".
>
> > --
> > Mark Murphy (a Commons Guy)
> >http://commonsware.com
> > _The Busy Coder's Guide to Android Development_ -- Available Now!- Hide 
> > quoted text -
>
> - Show quoted text -
--~--~-~--~~~---~--~~
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 M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



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

2008-06-16 Thread Mark Murphy

> News in Goggle I/o was not dedicated to Android Community.
> It was a show for medias and newspaper.

A presentation on "Dalvik VM Internals" is for "medias and newspaper"?

Wow -- you must have much better journalists than we do here in the US! ;-)

> 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 ??

Romain Guy and hackbod have been fairly busy in these discussion groups,
to name two Googlers. It's possible they type insanely fast, but I suspect
they have spent more than 5 minutes a week individually, let alone
together.

Shane Isbell said it best:

> I think their
> SDK move was a big mistake and has caused damage to the community, but
> without releasing an SDK, what do they have to report?

-- 
Mark Murphy (a Commons Guy)
http://commonsware.com
_The Busy Coder's Guide to Android Development_ -- Available Now!


--~--~-~--~~~---~--~~
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 M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



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

2008-06-16 Thread Shane Isbell
Hi Vas,

Looking through the story. Comment on "Walled Garden:" If Android developers
feel that Android will be completely open to them, they should not feel so
with abandon. Android is completely open to those that deploy the platform,
meaning that handset manufacturers and carriers are completely free to close
the features. Presumably by being a member of the OHA, there are certain
features which members are obligated to leave open, but the location API is
optional and could be closed, even within the spirit of the OHA. And as we
have seen, the ADC winners are almost entirely LBS based (many non-winners
as well), so the problem here is obvious: the industry has given a nod to
LBS apps but at the same time is free to close the LBS option for devices,
meaning they control the market on these apps. These restrictions are
primarily for carrier subsidized devices, but that is the largest part of
the market.

Shane

On Mon, Jun 16, 2008 at 8:59 AM, Vas -- Silicon Alley Insider <
[EMAIL PROTECTED]> wrote:

>
> Hi all, I wrote a story about Android on Silicon Alley Insider.
>
>
> http://www.alleyinsider.com/2008/6/three_reasons_why_android_developers_aren_t_flocking_to_the_iphone
>
> Read it and let me know what you think.
> >
>

--~--~-~--~~~---~--~~
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 M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[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 in VM internals. mobile
manufacturers have some.

But how can you use Linux OS based on GPL and keep your code private ?

Mobile manufacturers are 100% allowed to keep Drivers private if they
don't use GPL code.

But the kernel of Android based on Linux kernel and all other library
based on Linux library should be published without delay.

Linux Kernel code and all that staff belong to all those people
contributing for free for "Open Source Projects" Only.
And I don't speak about the use of Java specs etc...

And because that Android them is using so much from open source
projects (Bravo) they should consider Open source community and
respect its rules.

We was happy about Android team choice (OS based on open source)
because we supposed that it would be respecting the rules.

Regards

Andre Charles Legendre

--~--~-~--~~~---~--~~
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 M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



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

2008-06-16 Thread Romain Guy

> Very few of java users have any interest in VM internals. mobile
> manufacturers have some.

This is a mistake. Knowing the internals of the VM helps tremendously
writing good, efficient code.

> But the kernel of Android based on Linux kernel and all other library
> based on Linux library should be published without delay.

The changes made by the Android team in the Linux kernel have all been
published.

-- 
Romain Guy
www.curious-creature.org

--~--~-~--~~~---~--~~
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 M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Why is Android/Eclipse so unreliable?

2008-06-16 Thread Nickname

Thanks for the suggestion, Diego.

Is it a way how Google guides people away from Windows =.=!!

I'm using XP. I never saw 19% death so far with M5.

Do you see the problems I reported above on Ubuntu?

Nick


On Jun 16, 1:29 am, Diego Torres Milano <[EMAIL PROTECTED]> wrote:
> Personally, I've found much more reliable the combination ADT/Eclipse/
> Ubuntu than ADT/Eclipse/Windows Vista.
> Some problems, like the infamous 19% launch of death, never happened
> to me in Ubuntu.
> You should give it a try.
>
> On Jun 15, 9:44 pm, Nickname <[EMAIL PROTECTED]> wrote:
>
> > By the way, old log messages of prior application instance are often
> > shown on the re-opened LogCat window, which is very annoying.
>
> > Besides manually typing in "logcat -c" command in adb console, can
> > somebody teach me how to clean log messages of prior application
> > instance?
>
> > On Jun 14, 11:29 am, Nickname <[EMAIL PROTECTED]> wrote:
>
> > > Sometimes, Eclipse refuses to build my application on the first boot-
> > > up, so I have to reboot Eclipse again and again to fix the problem.
>
> > > Often, DDMS/adb fails to connect with Android emulator when I click
> > > Run menu, so I have to kill adb and re-Run my application to launch
> > > another emulator to get them right.
>
> > > Always, the current LogCat prospective loses log messages after
> > > application is re-Run.
>
> > > Is it possible to fuse Android SDK with Eclipse more precisely???
>
> > > Nick

--~--~-~--~~~---~--~~
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 M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



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

2008-06-16 Thread daspears


When will a new SDK be released for us mere mortals?

And when will the Android source be released to help us with debugging
and reporting bugs/fixes?

Googlers, please send a message up the management chain:  the natives
are getting restless!

thanks.
-Dave

On Jun 16, 1:58 pm, "Romain Guy" <[EMAIL PROTECTED]> wrote:
> > Very few of java users have any interest in VM internals. mobile
> > manufacturers have some.
>
> This is a mistake. Knowing the internals of the VM helps tremendously
> writing good, efficient code.
>
> > But the kernel of Android based on Linux kernel and all other library
> > based on Linux library should be published without delay.
>
> The changes made by the Android team in the Linux kernel have all been
> published.
>
> --
> Romain Guywww.curious-creature.org
--~--~-~--~~~---~--~~
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 M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] CPMF com novo nome... é circo m esmo

2008-06-16 Thread Renan Gonçalves
http://charges.uol.com.br/2008/06/13/ratinhos-deputados-o-circo/

-- 
Renan Gonçalves - Software Engineer
Cell Phone: +55 11 8633 6018
MSN: [EMAIL PROTECTED]
São Paulo - SP/Brazil

--~--~-~--~~~---~--~~
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 M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---



[android-developers] Re: Help on porting with ME4Android

2008-06-16 Thread Lex

Anyone ?

On Jun 10, 1:48 am, Lex <[EMAIL PROTECTED]> wrote:
> Hi all,
>
> Can you explain a little bit more precisely how to port a JavaME
> program to Android, usingME4Android? What are the steps to folow ?
> Ive got a JavaME app ( do I need source code or binary code ? Ive got
> both ). Do I need to create a new Android project and add all the
> javaME code ?
> Some help would really be appreciated as I couldnt find any on the
> web.
> 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]
Announcing the new M5 SDK!
http://android-developers.blogspot.com/2008/02/android-sdk-m5-rc14-now-available.html
For more options, visit this group at
http://groups.google.com/group/android-developers?hl=en
-~--~~~~--~~--~--~---