Readers like you help support MUO. When you make a purchase using links on our site, we may earn an affiliate commission. Read More.
I have this error in running my Helloworld Android app:
[2011-09-13 04:37:27 - hello] Android Launch!
[2011-09-13 04:37:27 - hello] adb is running normally.
[2011-09-13 04:37:27 - hello] Performing com.muo.hello.HelloActivity activity launch
[2011-09-13 04:37:27 - hello] Automatic Target Mode: using existing emulator 'emulator-5554' running compatible AVD 'myavd'
[2011-09-13 04:37:27 - hello] Uploading hello.apk onto device 'emulator-5554'
[2011-09-13 04:37:27 - hello] Installing hello.apk...
[2011-09-13 04:37:27 - hello] Success!
[2011-09-13 04:37:28 - hello] Starting activity com.muo.hello.HelloActivity on device emulator-5554
[2011-09-13 04:37:28 - hello] ActivityManager: am: 1: Syntax error: Unterminated quoted string
2011-11-29 00:08:00
I have the same error, on the every new android project that I create
2011-12-02 21:31:00
Mece,apparently we were not able to solve this question at the time. Maybe it's worth submitting it again.
2011-12-02 21:37:00
Thanks for the reply, I solve the problem or the problem solve its self I'm not sure but its working now I delete the old virtual device and create new maybe the old one was somehow corrupted...
2011-12-02 21:58:00
Thanks for the update!
2011-09-23 16:54:00
package com.muo.hello;import android.app.Activity;import android.os.Bundle;import android.widget.TextView;public class HelloActivity extends Activity { /** Called when the activity is first created. */ @Override public void onCreate(Bundle savedInstanceState) { super.onCreate(savedInstanceState); TextView tv = new TextView(this); tv.setText("Hello, Nachiket"); setContentView(tv); }}
2011-09-14 12:49:00
Could you provide the code for your HelloActivity?