[android-developers] cannot start SurfaceFlinger (ServiceManager: Unable to find the service SurfaceFlinger)

2008-05-07 Thread gphoneu
Hi Android support, Now I'm porting Android to A1200. And I can start zygote and dbus- daemon succesfully. But when I try to start runtime process, I meet the following error: ServiceManager: unable to find service SurfaceFlinger and failed to launch runtime. I only see LCD display flashing

[android-developers] Re: How to display these String?

2008-05-07 Thread Wei Yongqiang
Hi all, I create some files in my sdcard with Chinese names. I have develop an app to display these file names, but these names can not be displayed correctly. I use TextView to display these names. Anyone have idea for this issue? Thanks. Wei Yongqiang

[android-developers] Re: Thoughts About Content Providers

2008-05-07 Thread Itamar Rogel
Thanks, Chris :-) The mapping between mime-types and/or content URLs to content provider interfaces sounds indeed like a very good idea. I sure hope these issues will get their due attention before any API- stable of Android is made... Regards, Itamar Rogel, Briox http://www.briox.com On May

[android-developers] Re: Experiencing android sdk m5-rc15: terrible DNS resolution provoking network errors :(

2008-05-07 Thread chris
Hi Are you trying to connect by wifi ? If so , try disabling your local network card and relaunch the emulator. This worked for me. Rzgards On May 5, 12:19 pm, ruben [EMAIL PROTECTED] wrote: According to a post that reads ‘a note on DNS resolution…’, android-em only sees and uses a single DNS

[android-developers] News about the publication of ADC round1 ranklist ?

2008-05-07 Thread Florindo Renso
anyone know something ? Cheers --~--~-~--~~~---~--~~ 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

[android-developers] Re: News about the publication of ADC round1 ranklist ?

2008-05-07 Thread Hielko
Check the android challenge discussion group On 7 mei, 11:35, Florindo Renso [EMAIL PROTECTED] wrote: anyone know something ? Cheers --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android Developers group. To post

[android-developers] Re: News about the publication of ADC round1 ranklist ?

2008-05-07 Thread Manuel Kraft
hmmm,I just saw some details about the winners and the postponed announcement on http://www.android-portal.com/2008/05/06/adc-android-developer-challenge-winner-announcement-postponed/ On May 7, 12:52 pm, Hielko [EMAIL PROTECTED] wrote: Check the android challenge discussion group On 7 mei,

[android-developers] Re: Please support XMPP in Android.

2008-05-07 Thread wave connexion(BQ)
Hi, It may not be a good time to back to this very old thread while everybody is waiting for the winner announcement. But I want to thank for Dan's explanation. However as we can see a lot of apps submitted use Gtalk service extensively, and require Gtalk account login, I wonder why not get

[android-developers] Re: Null Pointer Exception on simple People query

2008-05-07 Thread kingkung
I'm sorry, it's not that it returs a null pointer exception, it's that when I query the People database on my second activity, cursor.first() returns false!!! All of the people are still in the database (nothing's changed)... why would the query from my first activity return the list of People,

[android-developers] MapView in a TabSpec

2008-05-07 Thread WildLuka
hi guys, any way of adding a map to a TabSpec or Tab ? cheerio --~--~-~--~~~---~--~~ 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

[android-developers] 'emulator-tcp-5555': Local file doesn't exist with Eclipse

2008-05-07 Thread patrick
hi, I just recently experienced a very strange bug. I develop on android for 2 month now and I never had this problem before. I'm not able to upload any apks to the emulator anymore, eclipse console says: [2008-05-07 17:03:33 - android] Android Launch! [2008-05-07 17:03:33 - android] adb is

[android-developers] Re: MapView in a TabSpec

2008-05-07 Thread WildLuka
ok ,, i've just noticed that you can pass an Intent to setContent() to start an activity. so I have defined and declared a MyMapActivity, but what I get now is a NullPointException as soon as I hit the MapTab ... here it is: Uncaught handler: thread Main exiting due to uncaught exception

[android-developers] Re: MapView in a TabSpec

2008-05-07 Thread Mark Murphy
WildLuka wrote: ok ,, i've just noticed that you can pass an Intent to setContent() to start an activity. so I have defined and declared a MyMapActivity, but what I get now is a NullPointException as soon as I hit the MapTab ... here it is: Uncaught handler: thread Main exiting due to

[android-developers] TableLayout layout params

2008-05-07 Thread kingkung
I understand the inherited structure of the LayoutParams (parent-- child), but still I'm getting an Invalid LayoutParams error no matter what I do: XML: ?xml version=1.0 encoding=utf-8? TableLayout android:id=@+id/view_contact xmlns:android=http://schemas.android.com/apk/res/android;

[android-developers] Re: JUnit

2008-05-07 Thread Steve918
You might want to check out Positron. http://code.google.com/p/android-positron/ On May 6, 8:40 am, vol [EMAIL PROTECTED] wrote: Sorry if someone has already answered this elsewhere, but does anyone know how to use JUnit with Android? Are the JUnit packages in android just for internal

[android-developers] Re: MapView in a TabSpec

2008-05-07 Thread WildLuka
sure ! public class MyMapActivity extends MapActivity { private OverlayController mOverlayController; private MapController mapController; /** Called when the activity is first created. */ @Override public void onCreate(Bundle icicle) {

[android-developers] Re: TableLayout layout params

2008-05-07 Thread kingkung
Never mind, I just used a vertical LinearLayout... much less prone to restrictions IMHO. On May 7, 10:51 am, kingkung [EMAIL PROTECTED] wrote: I understand the inherited structure of the LayoutParams (parent--child), but still I'm getting an Invalid LayoutParams error no matter what I do:

[android-developers] Re: MapView in a TabSpec

2008-05-07 Thread Mark Murphy
WildLuka wrote: sure ! snip TabHost.TabSpec tab2= tabs.newTabSpec(tab2); tab2= map.setContent(new Intent(this, MyMapActivity.class)); tab2.setIndicator(tab2, getResources().getDrawable(R.drawable.drawable2)); tabs.addTab(map); I'm assuming the second line should

[android-developers] Re: 'emulator-tcp-5555': Local file doesn't exist with Eclipse

2008-05-07 Thread Josh Guilfoyle
This generally happens when the apk file was not built for whatever reason. One thing to try is to clean and rebuild the project in Eclipse by going to Project - Clean. If that still doesn't work, carefully examine the console/log to see if there are any Dalvik compilation failures or other

[android-developers] Re: Story about interesting Android apps

2008-05-07 Thread Josh Guilfoyle
My app can be found here: http://five.googlecode.com. I'd be happy to describe it further if you're interested... On May 6, 11:12 am, Vasanth Sridharan [EMAIL PROTECTED] wrote: Hello, My name is Vas and I am a reporter for Silicon Alley Insider (www.alleyinsider.com), a tech news site based

[android-developers] Re: Story about interesting Android apps

2008-05-07 Thread OmarFlores
Hi Vasant, Please take a look of my app, geared towards an audience that would appreciate reading about wise / life giving psalms: http://coreintent.googlepages.com/ look for the entry Psalms of the King David. Also posted in http://helloandroid.com/apps where you will find a database of apps.

[android-developers] Re: Story about interesting Android apps

2008-05-07 Thread WanderSmarty
We have developed 2 apps for the challenge. One is gKite, gkite.wandersmart.net, mobile brand finder utilizing location based advertising and the other is an emergency response system, disasternetwork.org, for families and emergency responders. Please contact me at [EMAIL PROTECTED] if you would

[android-developers] Re: MapView in a TabSpec

2008-05-07 Thread Mark Murphy
WildLuka wrote: If I substitute the Intent with a LinearLayout, just as for tab1, the example works perfectly. and it's not just a MapActivity, the NullPointerException is thrown with any activity. Oh, sorry, I interpreted your that's it! from your preceding message as meaning things were

[android-developers] Compiling and Installing Androin in Pocket PC

2008-05-07 Thread sara gore
Hello friends, I want to develop an app using Android and I need that my app work in a Pocket PC (HP iPAQ) Someone tell me how to compile and install SO Android in a Pocket PC? What I need know? Thanks --~--~-~--~~~---~--~~ You received this message because

[android-developers] Re: MapView in a TabSpec

2008-05-07 Thread Hielko
We have an activity inside a tabview with a map without problems... On 7 mei, 23:00, Mark Murphy [EMAIL PROTECTED] wrote: WildLuka wrote: If I substitute the Intent with a LinearLayout, just as for tab1, the example works perfectly.  and it's not just a MapActivity, the

[android-developers] Anyone know how to get Android up and running on a Motorola L2

2008-05-07 Thread Mark Jones
I know its a stretch, but I was wondering if anyone knew of any hardware specs that could be used to put Android onto some real hardware (specifically the l2) --~--~-~--~~~---~--~~ You received this message because you are subscribed to the Google Groups Android

[android-developers] Prevent phone from ringing?

2008-05-07 Thread Trey Ethridge
Let's say that I want to send a caller straight to voicemail if I'm watching my favorite movie. Is it possible to have a service that grabs that Intent and doesn't let any other application have it? --~--~-~--~~~---~--~~ You received this message because you are

[android-developers] Re: How to initiate call

2008-05-07 Thread Raja Nagendra Kumar
Any inputs pl.. --~--~-~--~~~---~--~~ 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

[android-developers] Re: Reference to current Activity being displayed/shown

2008-05-07 Thread Raja Nagendra Kumar
Any inputs pl.. --~--~-~--~~~---~--~~ 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

[android-developers] Re: Story about interesting Android apps

2008-05-07 Thread noha mansour
and my one in this link: http://www.helloandroid.com/node/469 On 5/7/08, Josh Guilfoyle [EMAIL PROTECTED] wrote: My app can be found here: http://five.googlecode.com. I'd be happy to describe it further if you're interested... On May 6, 11:12 am, Vasanth Sridharan [EMAIL PROTECTED] wrote: