मैंने ग्रहण में एक सरल "हैलो वर्ल्ड" कार्यक्रम बनाया । मैं एक जावा फाइल करने के लिए कुछ भी नहीं जोड़ा गया है और केवल फ़ाइल में एक पाठ दृश्य जोड़ा गया main.xml
के रूप में
//main.xml file
<?xml version="1.0" encoding="utf-8"?>
<LinearLayout xmlns:android="http://schemas.android.com/apk/res/android"
android:orientation="vertical"
android:layout_width="fill_parent"
android:layout_height="fill_parent"
>
<TextView
android:layout_width="fill_parent"
android:layout_height="wrap_content"
android:text="Hello World"
/>
</LinearLayout>
और अब जब मैं अपना प्रोग्राम चलाता हूं तो यह कंसोल में निम्नलिखित दिखाता है।
//console output
[2011-07-10 07:10:22 - demo] ------------------------------
[2011-07-10 07:10:22 - demo] Android Launch!
[2011-07-10 07:10:24 - demo] adb is running normally.
[2011-07-10 07:10:24 - demo] Performing com.demo.DemoActivity activity launch
[2011-07-10 07:10:25 - demo] Automatic Target Mode: launching new emulator with compatible AVD 'vishal'
[2011-07-10 07:10:25 - demo] Launching a new emulator with Virtual Device 'vishal'
[2011-07-10 07:11:06 - Emulator] invalid command-line parameter: Files\Android\android-sdk\tools/emulator-arm.exe.
[2011-07-10 07:11:07 - Emulator] Hint: use '@foo' to launch a virtual device named 'foo'.
[2011-07-10 07:11:07 - Emulator] please use -help for more information
//--------------------------------------------------------------------------------/
यह दिखाता है कि मेरा एंड्रॉइड वर्चुअल डिवाइस (AVD) किसी कारण से शुरू नहीं हो सका। इस समस्या को सुलझाने में मैं क्या कर सकता हूं?